@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: "Gord Quick";
    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;
}

body2 {
    margin: 0;
    padding: 0;
    font-family: "Nunito";
    font-weight: 500;
    color: rgb(251, 238, 216);
    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;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
    background-image: url("assets/Background/background_fino_1600.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed; /* ← CHANGE from scroll to fixed */
    isolation: isolate;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

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

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

/* Ensure content sits above all background layers */
.hero-content,
.hero-text {
    position: relative;
    z-index: 3;
    width: 100%;
    box-sizing: border-box;
    color: rgb(251, 238, 216);
}

.hero-text {
    max-width: 64rem;
    margin: 0 auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

/* ===== SVG WRAPPER & ANIMATION ===== */
.hero-subtitle-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 762 / 61;
    margin: 0 auto 10rem;
    margin-top: -2rem;
    font-family: "Nunito Sans";
    line-height: 1.4; /* Multiplier of font size */
}

.hero-subtitle-svg {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-subtitle-svg2 {
    display: block;
    width: 21%;
    height: auto;
    position: relative;
    padding: 0.1rem 0.1rem;
    margin-top: -13rem;
}

/* Base SVG stays still */
.hero-subtitle-base {
    z-index: 1;
    color: rgb(251, 238, 216);
    font-family: "Gord Quick", sans-serif;
    font-size: 1.95rem; /* Increase from 1rem */
    font-weight: 700;
}

/* Wiggling SVG on top */
.hero-subtitle-wiggle {
    z-index: 2;
    animation: wiggle 2s ease-in-out infinite;
    color: rgb(28, 70, 54);
    font-family: "Gord Quick", sans-serif;
    font-size: 1.9rem; /* Increase from 1rem */

    font-weight: 700;
}

.hero-subtitle-wiggle2 {
    z-index: 2;
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(2px) rotate(0.5deg);
    }
    50% {
        transform: translateX(-2px) rotate(-0.5deg);
    }
    75% {
        transform: translateX(2px) rotate(0.5deg);
    }
}

.btn-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8.7rem;
}

.btn-info h2 {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: rgb(251, 238, 216); /* Make sure it's visible */
    letter-spacing: 0.05em;
    text-decoration: none;
    font-family: "Gord Quick";
}

/* ========================================
   


/* Features Section */
.features {
    padding: 3rem 0;
    background: linear-gradient(to bottom, rgb(251, 238, 216), rgb(251, 238, 216));
}

.features-header {
    text-align: center;
    margin-bottom: 5rem;
    color: rgb(28, 70, 54);
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 300;
    color: rgb(28, 70, 54);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgb(28, 70, 54);
    max-width: 42rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
}

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

.feature-card {
    padding-top: -12rem;
    text-align: center;
    transition: transform 0.3s;
    background: rgb(251, 238, 216);
}

.feature-icon {
    width: 6rem;
    height: 5rem;
    margin: 0 auto -0.5rem;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.05));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    padding-top: rem;
}

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

.feature-icon-secondary {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(20, 184, 166, 0.05));
}

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

.feature-icon-accent {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(5, 150, 105, 0.05));
}

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

.feature-card:hover .feature-icon {
    transform: scale(1.2);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgb(28, 70, 54);
    margin-bottom: 0.75rem;
    background: rgb(251, 238, 216);
}

.feature-text {
    color: rgb(28, 70, 54);
    line-height: 1.75;
    background: rgb(251, 238, 216);
    font-family: "Nunito Sans";
}

/* 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";
}

/* 
/////////////////////////////////////////
Buttons Buttons Buttons Buttons Buttons
///////////////////////////////////
 */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    margin-top: 10.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    justify-content: center;
    font-family: "Gord Quick;
}

.btn-2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    margin-top: -4.1rem;
 margin-bottom: 4rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    justify-content: center;
    font-family: "
        Gord Quick;
}

.btn-3 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2rem;
    margin-top: -0.9rem;
    margin-bottom: -2rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 900;
    color: rgb(251, 238, 216);

    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    justify-content: center;
    font-family: "Nunito Sans";
}
.btn-4 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2rem;
    margin-top: 1.1rem;
    margin-bottom: -93rem;
    margin-left: 0rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 900;
    color: rgb(251, 238, 216);

    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    justify-content: center;
    font-family: "Nunito Sans";
}

.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);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.btn-white {
    margin-bottom: rem 2;
    background: #fbeed8;
    color: #1c4636;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    background: rgb(28, 70, 54);
    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;
}

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

.btn svg {
    transition: transform 0.3s;
}

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

/* 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;
    }
}
