/* ------------------ THEME COLORS ------------------ */
:root {
    --primary-dark: #3E5F44;   /* Deep Green */
    --accent-lime: #B6F500;    /* Vibrant Lime */
    --accent-purple: #5D688A;  /* Muted Purple */
    --background: #F4F7F9;     /* Light Neutral Base */
    --text: #3E5F44;            /* Default Text Color */
}

/* ------------------ BODY ------------------ */
body {
    background-color: var(--background);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ------------------ TYPOGRAPHY ------------------ */
.satisfy-regular { font-family: "Satisfy", cursive; font-weight: 400; font-style: normal; }
.serif-editorial { font-family: 'Bodoni Moda', serif; color: var(--primary-dark); }
.cursive-accent { font-family: 'Satisfy', cursive; font-size: 1.8rem; color: var(--accent-lime); }

/* ------------------ TEXTURE OVERLAY ------------------ */
.frost-grain::after {
    content: ""; position: fixed; inset: 0;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05; pointer-events: none; z-index: 9999;
}

/* ------------------ ANIMATIONS ------------------ */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

.line-fracture {
    position: absolute; background: var(--accent-purple);
    height: 1px; width: 0; transition: width 1.5s ease;
}
.line-fracture.active { width: 100%; }

/* ------------------ NAVIGATION ------------------ */
.nav-link {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    position: relative; cursor: pointer; opacity: 0.6; transition: 0.4s;
    color: var(--primary-dark);
}
.nav-link:hover, .nav-link.active { opacity: 1; color: var(--accent-lime); }
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: currentColor; transition: 0.4s;
}
.nav-link.active::after { width: 100%; }

/* ------------------ BUTTONS ------------------ */
.btn-command {
    position: relative; padding: 18px 45px; border: 1px solid var(--primary-dark);
    font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
    background: transparent; color: var(--primary-dark);
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden; display: inline-block;
}
.btn-command:hover { background: var(--primary-dark); color: var(--background); }

/* ------------------ PAGES ------------------ */
.page-view { display: none; }
.page-view.active { display: block; animation: pageFade 1s forwards; }
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }

/* ------------------ QUICK VIEW MODAL ------------------ */
#quick-view-modal {
    position: fixed; inset: 0; background: rgba(62,95,68,0.95);
    z-index: 10000; display: none; align-items: center; justify-content: center;
}

/* ------------------ HERO ANIMATION ------------------ */
.hero-zoom { animation: zoomSlow 30s infinite alternate; }
@keyframes zoomSlow { from { transform: scale(1); } to { transform: scale(1.1); } }

/* ------------------ PRODUCT CARD ------------------ */
.product-card img { transition: transform 0.8s; }
.product-card:hover img { transform: scale(1.05); border-color: var(--accent-lime); }

/* ------------------ ACCENT STYLING ------------------ */
.accent-text { color: var(--accent-lime); }
.accent-background { background-color: var(--accent-purple); }
