/*
Theme Name: BuyAdderall
Theme URI: https://varpec.app
Author: Abdullah Choudhary
Author URI: https://varpec.app
Description: A premium, high-end wellness WooCommerce theme with hand-drawn aesthetics and Tailwind CSS (CDN).
Version: 1.0.1
Text Domain: buyadderall
*/

/* 
   We will rely mostly on Tailwind, but we need some custom CSS 
   for the specific "hand-drawn" brush stroke effects that 
   Tailwind doesn't do natively without plugins.
*/

:root {
    --paper-color: #fdfbf7;
    --ink-color: #1a1a1a;
}

body {
    background-color: var(--paper-color);
    color: var(--ink-color);
    /* High-end grain texture overlay could go here */
}

/* Hand-drawn border utility */
.sketch-border {
    border: 2px solid var(--ink-color);
    border-radius: 2px 255px 3px 25px / 255px 5px 225px 5px;
    box-shadow: 2px 3px 0 rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.sketch-border:hover {
    box-shadow: 4px 5px 0 rgba(0,0,0,0.2);
    transform: translateY(-2px) rotate(-1deg);
}

/* Organic shape for images */
.organic-clip {
    clip-path: polygon(3% 0, 100% 2%, 100% 100%, 0 98%);
}