@font-face {
    font-family: "Gord Quick";
    src:
        url("../assets/fonts/GordQucik-Black.woff2") format("woff2"),
        url("../assets/fonts/GordQucik-Black.woff") format("woff");
    font-weight: 400;
    font-display: swap;
}
/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Nunito Sans", sans-serif;  /* Light, readable default */
    font-weight: 500;
    color: rgb(28, 70, 54);
    line-height: 1.6;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #f0fdf4 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body.content-locked {
    overflow: hidden;
}

body.content-unlocked {
    overflow: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* ========================================
   AGE GATE
   ======================================== */

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    pointer-events: none;
}

.age-gate.active {
    pointer-events: auto;
}

.age-gate-container {
    text-align: center;
    background: rgb(251, 238, 216);
    padding: 60px 40px;
    max-width: 400px;
    border: 1px solid rgb(28, 70, 54);
    pointer-events: auto;
}

.age-gate-container h1 {
    font-size: 32px;
    color: rgb(28, 70, 54);
    font-weight: 700;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.age-gate-container p {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 32px 0;
}

#ageForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

label {
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #000000;
}

input[type="number"] {
    padding: 14px 16px;
    font-size: 18px;
    border: 2px solid #000000;
    background: #ffffff;
    font-family: inherit;
}

input[type="number"]:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

button {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgb(28, 70, 54);
    color: #ffffff;
    border: round;
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover {
    background: rgb(40, 123, 44);
}

button:active {
    transform: scale(0.98);
}

.disclaimer {
    font-size: 16px;
    color: rgb(28, 70, 54);
    margin: 0;
}

.hidden {
    display: none;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgb(251, 238, 216) 0%, rgb(251, 238, 216) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1rem;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    position: absolute;
    left: 1rem;
}

.logo img {
    display: block;
    height: auto;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    background: linear-gradient(to right, #0d9488, #14b8a6, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.nav-link:hover {
    color: rgb(28, 70, 54);
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

/* Hamburger Menu Button */
.hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 101;
}

.hamburger-btn:hover {
    background: rgba(13, 148, 136, 0.1);
}

.hamburger-btn .close-icon {
    display: none;
}

.hamburger-btn.active .hamburger-icon {
    display: none;
}

.hamburger-btn.active .close-icon {
    display: block;
}

.hamburger-icon,
.close-icon {
    color: rgb(28, 70, 54);
}

@media (max-width: 767px) {
    .hamburger-btn {
        display: flex;
    }
}

@media (min-width: 768px) {
    .hamburger-btn {
        display: none;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(7px);
    z-index: 99;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 16rem;
    background: rgba(251, 238, 216, 0.15);
    backdrop-filter: blur(12px);
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
    z-index: 102;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    max-width: 100%;
}

.mobile-menu-drawer.active {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.mobile-menu-header .logo {
    text-decoration: none;
    flex: 1;
    position: relative;
}

.mobile-menu-header .logo-text {
    font-size: 1.25rem;
    color: rgb(28, 70, 54);
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-close svg {
    color: rgb(28, 70, 54);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    background: transparent;
}

.mobile-nav-link {
    text-decoration: none;
    color: rgb(251, 238, 216);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-link:hover {
    color: rgb(28, 70, 54);
    background: rgba(255, 255, 255, 0.44);
}

@media (min-width: 768px) {
    .mobile-menu-drawer,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Cart Button - STICKY VERSION */
.cart-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgb(28, 70, 54);
    color: white;
    border: none;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.3s;
    position: fixed; /* ← CHANGED from absolute */
    right: 1.5rem; /* ← Add some padding from edge */
    top: 1.5rem; /* ← Position from top */
    z-index: 99; /* ← HIGH but below modals (9999) */
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(28, 70, 54, 0.25);
}

.cart-btn:hover {
    background: rgb(251, 238, 216);
    color: rgb(28, 70, 54);
    box-shadow: 0 6px 16px rgba(28, 70, 54, 0.35);
}

.cart-icon {
    width: 1rem;
    height: 1rem;
}

.cart-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: #059669;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge.hidden {
    display: none;
}
/* ========================================
   TICKER BANNER
   ======================================== */

.ticker-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 3rem;
    margin: 0 auto 4rem;
    overflow: hidden;
    background: rgba(28, 70, 54, 0.08);
    border-top: 2px solid rgb(28, 70, 54);
    border-bottom: 2px solid rgb(28, 70, 54);
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    gap: 0;
    animation: scroll-ticker 11s linear infinite;
    will-change: transform;
}

.ticker-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: "Gord Quick", sans-serif;
    color: rgb(251, 238, 216);
    letter-spacing: 0.1em;
    padding: 0 2rem;
    text-transform: uppercase;
    flex-shrink: 0;
}

@keyframes scroll-ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .ticker-text {
        font-size: 0.875rem;
        padding: 0 1.5rem;
    }

    .ticker-wrapper {
        height: 2.5rem;
        margin: 0 auto 3rem;
    }
}

/* ========================================
   HERO SECTION (UNIFIED)
   ======================================== */

.hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-image: url("../assets/Background/background_1600.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    isolation: isolate;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.008);
    z-index: 1;
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    z-index: 2;
    pointer-events: none;
}

.hero-content,
.hero-text {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ========================================
   HERO TITLE (NO DUPLICATES)
   ======================================== */

.hero-main-title {
    margin: 16rem 0 2rem 0;
    padding: 0;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgb(251, 238, 216);
    /* ... rest ... */
}


/* ========================================
   HERO SUBTITLE
   ======================================== */

.hero-subtitle {
    margin: 0 0 3rem 0;
    padding: 0 1rem;
    font-weight: 500;
    font-family: "Nunito Sans", sans-serif;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    line-height: 1.6;
    color: #e4e2e2;
}

/* ========================================
   HERO BUTTONS
   ======================================== */

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgb(251, 238, 216);
    color: rgb(251, 238, 216);
}

.btn-secondary:hover {
    background: rgba(251, 238, 216, 0.15);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

/* ========================================
   RESPONSIVE HERO
   ======================================== */

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        gap: 1rem;
        flex-direction: column;
        margin-top: 1.5rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .btn-large {
        padding: 0.95rem 1.75rem;
        font-size: 0.85rem;
    }

    .hero {
        min-height: 70vh;
        padding: 1.5rem 1rem;
    }
}

.hero .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}


/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 80px 20px;
    background: rgb(186, 210, 84);
    color: rgb(20, 53, 40);
}

.features .container {
    max-width: 1200px;
    margin: 0 auto;
}
/* Use Gord Quick only for headings */
h1, h2, h3, h4, h5, h6, .features-title {
    font-family: "Gord Quick", sans-serif;
}

.features-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: rgb(28, 70, 54);
}

.features-subtitle {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: rgb(28, 70, 54);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.85;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 0;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: 3.5px solid rgb(28, 70, 54);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgb(28, 70, 54);
    box-shadow: 0 8px 24px rgba(28, 70, 54, 0.15);
    transform: translateY(-4px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgb(213, 230, 143);
    color: rgb(219, 238, 140);
    margin-bottom: 24px;
    flex-shrink: 0;
    border-radius: 4px;
    font-size: 32px;
}

.feature-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: rgb(28, 70, 54);
}

.feature-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgb(28, 70, 54);
    margin-bottom: 16px;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: rgb(28, 70, 54);
}

.feature-list li {
    padding: 6px 0 6px 20px;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: rgb(28, 70, 54);
}

/* Tablet & Mobile */
@media (max-width: 768px) {
    .features {
        padding: 60px 20px;
    }

    .features-subtitle {
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .features-grid {
        gap: 24px;
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta {
    position: relative;
    padding: 2.5rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(28, 70, 54), rgb(28, 70, 54), rgb(28, 70, 64));
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 1px 1px, rgb(251, 238, 216) 1px, transparent 0);
    background-size: 40px 40px;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: rgb(251, 238, 216);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: rgb(251, 238, 216);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
    font-family: "Nunito Sans";
}

/* Sticky Footer Utility Bar */
.footer-utility {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 1.5rem;
    pointer-events: none; /* Allows clicks to pass through empty space */
}

.footer-utility-content {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    pointer-events: auto; /* Re-enable for buttons */
}

/* Utility Buttons Base Style */
.utility-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(251, 238, 216, 0.15);
    backdrop-filter: blur(12px);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: rgb(28, 70, 54);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
}

.utility-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 25px 30px rgba(0, 0, 0, 0.25);
}

.utility-btn:active {
    transform: translateY(0);
}

/* Language Toggle Button */
.language-toggle-btn {
    min-width: 2.5rem;
}

.lang-current {
    display: block;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    .footer-utility {
        padding: 1rem;
    }

    .utility-btn {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.75rem;
    }
}

/* Back to Top Button */
.back-to-top-btn {
    color: rgb(28, 70, 54);
}

.back-to-top-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

/* Hide back-to-top on initial load */
.back-to-top-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

/* 
/////////////////////////////////////////
Buttons - Clean & Modular System
/////////////////////////////////////////
*/

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2.5rem;
    border: none;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 900;
    font-family: "Gord Quick", "Nunito Sans", sans-serif;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    justify-content: center;
}

/* Button Variants */

.btn-primary {
    background: rgb(28, 70, 54);
    color: rgb(251, 238, 216);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: rgb(251, 238, 216);
    color: rgb(28, 70, 54);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: rgb(251, 238, 216, 0.5);
    color: white;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgb(28, 70, 54, 0.6);
    color: rgb(251, 238, 216);
}

.btn-whatsapp {
    background: linear-gradient(to right, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp:hover {
    background: linear-gradient(to right, #22c55e, #0f766e);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.btn-outline:hover {
    background: #f9fafb;
}

/* SVG Icon Animation */

.btn svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(0.25rem);
}

/* Button Groups & Spacing */

.button-group {    
    display: flex;    
    flex-direction: column;    
    gap: 20px;    
margin-top: 40px;}

.cta-button-group {
    margin-top: 2.5rem;
}

/* Responsive */

@media (max-width: 768px) {
    .btn {
        padding: 1.25rem 2rem;
        font-size: 0.95rem;
    }

    .button-group {
        gap: 2rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 1rem 1.75rem;
        font-size: 0.875rem;
    }

    .button-group {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
}

/* Shop Page */
.shop-page {
    min-height: 100vh;
    padding: 4rem 0;
    background: linear-gradient(to bottom, rgb(28, 70, 54), rgb(28, 70, 54));
}

.shop-header {
    text-align: center;
    margin-bottom: 4rem;
}

.shop-title {
    font-family: "Gord Quick", sans-serif;
    font-weight: 800;

    margin-bottom: 1rem;
    background: linear-gradient(to right, rgb(251, 238, 216), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-subtitle {
    font-size: 1rem;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 300;
    color: rgb(251, 238, 216);
}
.shop-instructions {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2.2rem;
    background: linear-gradient(to right, rgb(251, 238, 216), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Category Filter */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.83rem;
    justify-content: center;
    margin-bottom: 3rem;
    margin-top: -2rem;
}

.filter-btn {
    padding: 0.625rem 1.5rem;
    border: 1px solid rgb(251, 238, 216);
    background: transparent;
    color: rgb(251, 238, 216);
    border-radius: 9999px;
    cursor: pointer;
    font-size: 0.71rem;
    transition: all 0.3s;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
}

.filter-btn:hover {
    background: rgb(251, 238, 216);
    color: rgb(28, 70, 54);
}

.filter-btn.active {
    background: rgb(251, 238, 216);
    color: rgb(28, 70, 54);
    border-color: rgb(28, 70, 54);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 90rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: rgb(255, 248, 237);
    border: 1px solid #f3f4f6;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.5s;
}

.product-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.product-card:hover .product-image {
    transform: scale(1.5);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgb(28, 70, 54);
    margin-bottom: 0.5rem;
    font-family: "Gord Quick, sans-serif;
}

.product-description {
    font-size: 0.875rem;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 300;
    color: rgb(28, 70, 54);
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.25rem;
    color: rgb(28, 70, 54);
    font-weight: 300;
    font-family: "Gord Quick", sans-serif;
    margin-bottom: 1rem;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(to right, rgb(28, 70, 54), #059669);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 9999px;
    cursor: pointer;
    font-size: 0.875rem;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.add-to-cart-btn:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    background: linear-gradient(to right, #0f766e, #047857);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 5rem 0;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-text {
    font-size: 1.25rem;
    color: rgb(251, 238, 216);
    font-weight: 300;
}

/* Cart Page */
.cart-page {
    min-height: 100vh;
    padding: 2rem 0;
    background: linear-gradient(to bottom, rgb(28, 70, 54), rgb(28, 70, 54));
}

.cart-container {
    max-width: 64rem;
}

.empty-cart {
    text-align: center;
    padding: 2rem 0;
}

.empty-cart-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgb(251, 238, 216), rgb(251, 238, 216));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-cart-icon svg {
    color: rgb(28, 70, 54);
}

.empty-cart-title {
    font-size: 2.25rem;
    font-weight: 300;
    color: rgb(251, 238, 216);
    font-family: "Gord Quick", sans-serif;
    margin-bottom: 1rem;
}

.empty-cart-text {
    font-size: 1rem;
    color: rgb(251, 238, 216);
    margin-bottom: 2rem;
    font-weight: 300;
    font-family: "Nunito Sans", sans-serif;
}

.cart-header {
    margin-bottom: 3rem;
}

.cart-title {
    font-size: clamp(3rem, 6vw, 3.5rem);
    font-family: "Gord Quick", sans-serif;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, rgb(251, 238, 216), rgb(251, 238, 216));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-subtitle {
    color: rgb(251, 238, 216);
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cart-item {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.cart-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cart-item-content {
    display: flex;
    gap: 1.5rem;
}

.cart-item-image {
    width: 7rem;
    height: 7rem;
    object-fit: cover;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 1.25rem;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    color: rgb(28, 70, 54);
    margin-bottom: 0.25rem;
}

.cart-item-description {
    font-size: 0.875rem;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 300;
    color: rgb(28, 70, 54);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.cart-item-price {
    font-size: 1.25rem;
    color: rgb(28, 70, 54);
    font-weight: 400;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.remove-btn {
    background: transparent;
    border: none;
    color: rgb(28, 70, 54);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s;
}

.remove-btn:hover {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
}

.remove-btn svg {
    width: 1rem;
    height: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f9fafb;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
}

.quantity-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: white;
}

.quantity-btn svg {
    width: 0.75rem;
    height: 0.75rem;
}

.quantity-value {
    width: 2rem;
    text-align: center;
    font-weight: 300;
}

/* Card */
.card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.card-summary {
    background: linear-gradient(135deg, #ffffff, #f0fdf4);
    border-color: rgba(13, 148, 136, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 2rem;
}

/* Form */
.form-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: #111827;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    color: #4b5563;
    font-weight: 300;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 300;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0d9488;
}

.form-textarea {
    resize: vertical;
}

/* Summary */
.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.total-label {
    font-size: 1.5rem;
    color: #4b5563;
    font-weight: 300;
}

.total-amount {
    font-size: 2.25rem;
    color: #0d9488;
    font-weight: 300;
}

.summary-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.summary-note {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1.5rem;
    font-weight: 300;
}

.cart-footer {
    text-align: center;
    margin-top: 2rem;
}

.continue-shopping {
    color: rgb(251, 238, 216);
    text-decoration: none;
    font-weight: 300;
    transition: text-decoration 0.3s;
}

.continue-shopping:hover {
    text-decoration: underline;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #111827;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(200%);
    transition: transform 0.3s;
    z-index: 100;
}

.toast.show {
    transform: translateY(0);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

/* Responsive */
@media (max-width: 640px) {
    .cart-item-content {
        flex-direction: column;
    }

    .cart-item-actions {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .cart-item-image {
        width: 100%;
        height: 12rem;
    }
}