:root {
    /* Greens */
    --fern:        #528552;
    --forest:      #3d5a3d;
    --mid-green:   #8bac59;
    --light-green: #e8f0dc;
    /* Teals */
    --teal-deep:   #106462;
    --teal-mid:    #318E8B;
    --teal-light:  #519D9B;
    --teal-ice:    #DAFFFD;
    /* Neutrals */
    --cream:       #F8F4E9;
    --cream-dark:  #CDCFC0;
    --sage:        #B8BBA3;
    --sage-dark:   #9F9989;
    --charcoal:    #3B575A;
    --ink-1:       #000000;
    --ink-2:       #FFFFFF;
    /* Neon */
    --neon-electric-mint: #39FFD8;
    --neon-glow-electric-mint: 0 0 8px #39FFD8, 0 0 22px #39FFD8, 0 0 44px rgba(57,255,216,0.35);
    --neon-charcoal: #3B575A;
    --neon-glow-charcoal: 0 0 8px rgba(59,87,90,.55), 0 0 22px rgba(59,87,90,0.35), 0 0 44px rgba(59,87,90,0.18);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--cream); color: var(--charcoal); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* NAVBAR */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 3rem;
    background: transparent;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link a {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
}

.nav-link a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 2px;
    background: var(--neon-electric-mint);
    box-shadow: var(--neon-glow-electric-mint);
    transition: width 0.35s ease;
}

.nav-link a:hover,
.nav-link a.active {
    color: var(--neon-electric-mint);
    text-shadow: var(--neon-glow-electric-mint);
}

.nav-link a:hover::after,
.nav-link a.active::after {
    width: 100%;
}

/* Sign Up / Login — neon pill buttons */
.sign-up_login {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.sign-up_login li a {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.75rem 1.3rem;
    border-radius: 999px;
    border: 2px solid var(--neon-glow-electric-mint);
    color: var(--neon-electric-mint);
    text-shadow: 0 0 6px rgba(57,255,216,0.5);
    box-shadow: 0 0 12px rgba(57,255,216,0.15), inset 0 0 10px rgba(57,255,216,0.05);
    transition: all 0.3s ease;
}

/* Cart icon — override pill-button styles */
.sign-up_login li a.cart-icon {
    padding: 0.55rem 0.65rem;
    border-radius: 999px;
    display: inline-flex;

}

.sign-up_login li a:hover {
    background-color: var(--neon-electric-mint);
    color: var(--ink-1);
    text-shadow: none;
    box-shadow: var(--neon-glow-electric-mint);
}



/* ══════════════════════════════════════════
   HERO — full viewport, botanical bg
   FIXED: Background and logo sizing
══════════════════════════════════════════ */
#home {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url(images/background-kitchen.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7) saturate(1.15);
    transform: scale(1.05);
    transition: heroZoom 11s ease;
    z-index: 0;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.0); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            160deg,
            rgba(16,100,98,0.5) 0%,
            rgba(61,90,61,0.38) 45%,
            rgba(59,87,90,0.25) 100%
    );
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 2rem;
    animation: heroFade 1.1s ease forwards;
}

.hero-inner img {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 6px 32px rgba(57,255,216,0.7))
    brightness(1.2)
    contrast(1.2)
    saturate(1.8)
    hue-rotate(-8deg);
    display: block;
}

.hero-logo {
    max-width: 600px;
    width: 100%;
    filter: drop-shadow(0 0 20px rgba(57,255,216,0.8))
    drop-shadow(0 0 35px rgba(57,255,216,0.5))
    brightness(1.2)
    contrast(1.2)
    saturate(1)
    hue-rotate(-12deg);
}

.hero-fallback {
    color: var(--cream);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    line-height: 1.3;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    letter-spacing: 0.03em;
    line-height: 1.65;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}

.hero-btn {
    display: inline-block;
    padding: 0.9rem 2.6rem;
    background: transparent;
    color: var(--neon-electric-mint);
    border: 2px solid var(--neon-electric-mint);
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(57,255,216,0.5);
    box-shadow: 0 0 18px rgba(57,255,216,0.2), inset 0 0 14px rgba(57,255,216,0.05);
    cursor: pointer;
    transition: all 0.35s ease;
}

.hero-btn:hover {
    background-color: var(--neon-electric-mint);
    color: var(--ink-1);
    text-shadow: none;
    box-shadow: var(--neon-glow-electric-mint), 0 8px 28px rgba(57,255,216,0.3);
    transform: translateY(-3px);
}

.scroll-cue {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.65;
    animation: cueBounce 2.2s infinite;
}

.scroll-cue span {
    display: block;
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, transparent, var(--cream));
    margin: 0 auto;
}

/* ══════════════════════════════════════════
   PRODUCTS SECTION
══════════════════════════════════════════ */
#products {
    padding: 5.5rem 3rem 2rem;
    background: linear-gradient(180deg, var(--cream) 0%, #eeeade 100%);
}

.section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal-mid);
    margin-bottom: 0.5rem;
}

#products h2 {
    font-size: 2.8rem;
    color: var(--forest);
    margin-bottom: 0.4rem;
    line-height: 1.1;
}

#products h3 {
    font-size: 1.05rem;
    font-weight: 300;
    font-style: italic;
    color: var(--sage-dark);
    margin-bottom: 2.5rem;
    font-family: 'Montserrat', sans-serif;
}

.scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 65%;
    margin: 0 auto;
}

#scroll-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0.5rem 2rem;
    flex: 1;
}

#scroll-track::-webkit-scrollbar { display: none; }

.product-card {
    flex-shrink: 0;
    width: 270px;
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 1rem;
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease, border-color 0.3s ease;
    animation: fadeSlideUp 0.6s ease forwards;
    opacity: 0;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 24px 48px rgba(16,100,98,0.18);
    border-color: var(--teal-light);
}

.product-image {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: var(--cream);
    padding: 0.5rem;
}

.card-body { padding: 1.2rem; }

.benefits-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.benefits-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--teal-deep);
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.35rem;
}

.card-description {
    font-size: 0.83rem;
    color: var(--sage-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--charcoal);
}

.add-to-cart-btn {
    padding: 0.5rem 1rem;
    background: var(--teal-deep);
    color: var(--teal-ice);
    border: none;
    border-radius: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: var(--fern);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(16,100,98,0.3);
}

.left-btn, .right-btn {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: bold;
}

.left-btn {
    background: var(--charcoal);
    border: 2px solid var(--charcoal);
    color: var(--teal-ice);
}

.right-btn {
    background: var(--charcoal);
    border: 2px solid var(--charcoal);
    color: var(--teal-ice);
}

.left-btn:hover, .right-btn:hover { transform: scale(1.12); background: var(--fern); border-color:var(--fern); }
.left-btn:disabled, .right-btn:disabled { opacity: 0.2; cursor: not-allowed; transform: none; }

#progress-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0 2.5rem;
}

.progress-dot {
    height: 8px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: var(--cream-dark);
    transition: all 0.3s ease;
}

.view-more {
    display: inline-block;
    width: 15%;
    margin: 0 auto;
    padding: 0.9rem 2.6rem;
    background: transparent;
    color: var(--neon-charcoal);
    border: 2px solid var(--neon-charcoal);
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(200,185,122,0.4);
    box-shadow: 0 0 18px rgba(200,185,122,0.15), inset 0 0 14px rgba(200,185,122,0.04);
    cursor: pointer;
    transition: all 0.35s ease;
}

.view-more:hover {
    background-color: var(--fern);
    color: var(--teal-ice);
    text-shadow: none;
    box-shadow: var(--fern), 0 8px 28px rgba(82,133,82,0.25);
    transform: translateY(-3px);
}

/* ══════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════ */
#about-us {
    padding: 7rem 3rem;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

#about-us::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,100,98,0.22) 0%, transparent 70%);
    pointer-events: none;
}

#about-us::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,172,89,0.13) 0%, transparent 70%);
    pointer-events: none;
}

.about-inner {
    position: relative;
    z-index: 1;
}

/* Keep titles centered */
#about-us .section-label {
    color: var(--teal-light);
    text-align: center;
}

#about-us h2 {
    font-size: 2.8rem;
    color: var(--cream);
    margin-bottom: 3rem;
    text-align: center;
}

/* Image and text layout */
.about-content {
    display: grid;
    grid-template-columns: 620px 1fr;
    gap: 0;
    align-items: start;
    position: relative;
}

.about-image-wrapper {
    z-index: 1;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.background-image {
    background-image: url("images/Variety-Glass-Bottles.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 640px;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
}

.about-text {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(16px);
    padding: 3rem 3.5rem 3rem 3rem;
    margin-left: 30px;
}

#about-us p {
    font-size: 1.6rem;
    line-height: 2.1;
    color: var(--cream);
    text-align: left;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* ══════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════ */
#contact {
    padding: 6.5rem 3rem;
    background: linear-gradient(160deg, #eeeade 0%, var(--light-green) 100%);
    text-align: center;
}

#contact { color: var(--teal-deep); }

#contact h2 {
    font-size: 2.8rem;
    color: var(--forest);
    margin-bottom: 0.6rem;
}

#contact h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #9b3a2e;
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.contact-hours {
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(8px);
    border: 1px solid var(--cream-dark);
    border-radius: 1.25rem;
    padding: 2.2rem 3rem;
    box-shadow: 0 8px 32px rgba(59,87,90,0.1);
    min-width: 290px;
    text-align: left;
}

.contact-hours h3 {
    font-size: 1.35rem;
    color: var(--teal-deep);
    margin-bottom: 1.3rem;
    text-align: center;
}

.contact-hours p {
    font-size: 0.9rem;
    color: var(--charcoal);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(205,207,192,0.5);
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.contact-hours p:last-child { border-bottom: none; }

.contact-hours p.closed {
    color: var(--sage-dark);
    font-weight: 600;
}

.review-card {
    background: var(--teal-deep);
    border-radius: 1.25rem;
    padding: 2.5rem 2.5rem;
    box-shadow: 0 8px 32px rgba(16,100,98,0.22);
    min-width: 260px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
}

.review-card h3 { font-size: 1.6rem; color: var(--teal-ice); }
.review-card p  { font-size: 0.88rem; color: var(--cream-dark); line-height: 1.75; }

.review-stars {
    font-size: 1.5rem;
    letter-spacing: 0.12em;
    color: #f5c842;
}

.review-btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: transparent;
    border: 2px solid var(--neon-electric-mint);
    border-radius: 999px;
    color: var(--neon-electric-mint);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(57,255,216,0.4);
    box-shadow: 0 0 14px rgba(57,255,216,0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-btn:hover {
    background: var(--neon-electric-mint);
    color: var(--ink-1);
    text-shadow: none;
    box-shadow: var(--neon-glow-electric-mint);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   FOOTER — 3-column layout
══════════════════════════════════════════ */
footer {
    background: var(--ink-1);
    color: var(--cream);
    padding: 5rem 3rem 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    max-width: 1100px;
    margin: 0 auto;
}

.footer-brand h2 {
    font-size: 1.7rem;
    color: var(--cream);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.footer-brand p {
    font-size: 0.86rem;
    color: var(--sage);
    line-height: 1.85;
    margin-bottom: 1.75rem;
    max-width: 290px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--cream-dark);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--teal-deep);
    border-color: var(--teal-deep);
    color: var(--teal-ice);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(16,100,98,0.4);
}

.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}

.footer-contact .footer-col-title    { color: var(--teal-light); }
.footer-newsletter .footer-col-title { color: var(--mid-green); }

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.87rem;
    color: var(--sage);
    line-height: 1.55;
}

.footer-contact li .icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.05rem; }

.footer-newsletter p.newsletter-desc {
    font-size: 0.86rem;
    color: var(--sage);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form input {
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 0.6rem;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.07);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.84rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form input::placeholder { color: var(--sage-dark); }

.newsletter-form input:focus {
    border-color: var(--neon-electric-mint);
    box-shadow: 0 0 10px rgba(57,255,216,0.2);
}

.newsletter-submit {
    padding: 0.72rem 1.5rem;
    background: transparent;
    border: 2px solid var(--neon-electric-mint);
    border-radius: 999px;
    color: var(--neon-electric-mint);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 0 6px rgba(57,255,216,0.4);
    box-shadow: 0 0 12px rgba(57,255,216,0.12);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.newsletter-submit:hover {
    background: var(--neon-electric-mint);
    color: var(--ink-1);
    text-shadow: none;
    box-shadow: var(--neon-glow-electric-mint);
    transform: translateY(-2px);
}

.newsletter-note {
    font-size: 0.73rem;
    color: var(--sage-dark);
    line-height: 1.5;
    margin-top: 0.25rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy { font-size: 0.78rem; color: var(--sage-dark); }

.footer-review-link {
    font-size: 0.84rem;
    color: var(--teal-ice);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-review-link:hover {
    color: var(--neon-electric-mint);
    text-shadow: 0 0 8px rgba(57,255,216,0.4);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.4rem;
    align-items: center;
}

.footer-bottom-links a {
    font-size: 0.76rem;
    color: var(--sage-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--teal-ice);
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes heroFade {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes cueBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(9px); }
}

/* ══════════════════════════════════════════
   HAMBURGER MENU BUTTON
══════════════════════════════════════════ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 310;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--neon-electric-mint);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 6px rgba(57,255,216,0.5);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: 2px solid rgba(57,255,216,0.4);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: var(--neon-electric-mint);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 320;
}
.mobile-nav-close:hover {
    background: rgba(57,255,216,0.15);
    border-color: var(--neon-electric-mint);
    box-shadow: var(--neon-glow-electric-mint);
}

/* Mobile nav drawer */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(16,20,16,0.97);
    z-index: 300;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    width: 100%;
    padding: 0 2rem;
}

.mobile-nav ul li a {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--cream);
    text-align: center;
    padding: 0.6rem 1rem;
    transition: color 0.3s ease;
}

.mobile-nav ul li a:hover { color: var(--neon-electric-mint); }

.mobile-nav-divider {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 1.25rem auto;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0 2.5rem;
}

.mobile-nav-actions a {
    display: block;
    width: 100%;
    max-width: 260px;
    text-align: center;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.mobile-nav-actions a.btn-signup {
    border: 2px solid var(--neon-electric-mint);
    color: var(--neon-electric-mint);
}
.mobile-nav-actions a.btn-signup:hover {
    background: var(--neon-electric-mint);
    color: var(--ink-1);
}
.mobile-nav-actions a.btn-login {
    background: var(--neon-electric-mint);
    color: var(--ink-1);
    border: 2px solid var(--neon-electric-mint);
}
.mobile-nav-actions a.btn-login:hover {
    box-shadow: var(--neon-glow-electric-mint);
}
.mobile-nav-actions a.btn-cart {
    color: var(--cream);
    font-size: 1.1rem;
    padding: 0.5rem;
    border: none;
    width: auto;
}

/* ── Read More button (About section mobile) ── */
.read-more-btn {
    display: none;
    margin-top: 1.25rem;
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 2px solid var(--teal-light);
    border-radius: 999px;
    color: var(--teal-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.read-more-btn:hover {
    background: var(--teal-light);
    color: var(--charcoal);
}

/* ══════════════════════════════════════════
   RESPONSIVE — LAPTOP (max-width: 1200px)
══════════════════════════════════════════ */
@media (max-width: 1200px) {
    #navbar { padding: 1.2rem 2rem; }
    .nav-list { gap: 1.8rem; }
    .scroll-wrapper { width: 80%; }
    .footer-grid { gap: 2.5rem; }
    #about-us { padding: 5rem 2rem; }
    .about-text { padding: 2.5rem; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (max-width: 900px)
══════════════════════════════════════════ */
@media (max-width: 900px) {
    /* Navbar */
    #navbar { padding: 1rem 1.5rem; }
    .nav-list { display: none; }
    .sign-up_login { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: flex; }

    /* Scroll wrapper */
    .scroll-wrapper { width: 90%; }

    /* View more button */
    .view-more { width: auto; padding: 0.9rem 2rem; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }

    /* About */
    .about-content { grid-template-columns: 1fr; gap: 2rem; }
    .about-text { margin-left: 0; padding: 2.5rem; }

    #products { padding: 5rem 2rem 2rem; }
    #about-us { padding: 4rem 2rem; }
    #contact   { padding: 4rem 2rem; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (max-width: 640px)
══════════════════════════════════════════ */
@media (max-width: 640px) {
    /* ── Navbar ── */
    #navbar { padding: 1rem 1.25rem; }

    /* ── Hero ── */
    #home { min-height: 85vh; }
    .hero-bg { background-position: center top; }
    .hero-inner { padding: 1.25rem; }
    .hero-inner img { max-width: 200px; margin: 0 auto; }
    .hero-logo { max-width: 200px; }
    .hero-tagline { font-size: 1rem; margin-bottom: 1.5rem; }
    .hero-btn { padding: 0.75rem 1.6rem; font-size: 0.78rem; }

    /* ── Products ── */
    #products { padding: 3.5rem 1rem 1.5rem; }
    #products h2 { font-size: 1.9rem; }
    #products h3 { font-size: 0.9rem; margin-bottom: 1.5rem; }

    /* Carousel — full width, single card fills screen */
    .scroll-wrapper { width: 100%; gap: 0.3rem; }
    .left-btn, .right-btn { width: 2.2rem; height: 2.2rem; font-size: 0.85rem; flex-shrink: 0; }
    #scroll-track { padding-left: 0; padding-right: 0;}

    /* Product card sizing */
    .product-card { width: calc(100vw - 6rem); max-width: none; }
    .product-image { height: 200px; object-fit: cover; }

    /* View more button */
    .view-more {
        width: auto;
        min-width: 160px;
        padding: 0.8rem 1.5rem;
        font-size: 0.78rem;
    }

    /* ── About Us ── */
    #about-us { padding: 3.5rem 1.25rem; }
    #about-us h2 { font-size: 1.9rem; margin-bottom: 1.5rem; }
    .about-content { grid-template-columns: 1fr; gap: 1.5rem; }
    .about-text { margin-left: 0; padding: 1.5rem; }
    .background-image { min-height: 220px; }

    /* Read More — truncate paragraph on mobile */
    .about-text p {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: all 0.4s ease;
    }
    .about-text p.expanded {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
    .read-more-btn { display: inline-block; }

    /* ── Contact ── */
    #contact { padding: 3.5rem 1.25rem; }
    #contact h2 { font-size: 1.9rem; }
    .contact-grid { flex-direction: column; align-items: center; }
    .review-card  { max-width: 100%; width: 100%; }
    .contact-hours { min-width: unset; width: 100%; }

    /* Fix Wednesday hours wrapping */
    .contact-hours p span:first-child { min-width: 100px; }
    .contact-hours p span:last-child  { text-align: right; white-space: nowrap; }

    /* ── Footer ── */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    footer { padding: 3rem 1.25rem 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .footer-brand p { max-width: 100%; }

    /* Prevent footer text overflow */
    .footer-contact li { word-break: break-word; }
    .footer-contact li span:last-child { overflow-wrap: break-word; word-break: break-all; }
}