/* Tangier Bakery website styles */

:root {
    --cream: #FFFBF5;
    --soft-cream: #FFF9F0;
    --sage: #edc01f;
    --sage-dark: #d4a817;
    --sage-muted: #E8D4B8;
    --blush: #F5E6D3;
    --charcoal: #2C2416;
    --text: #3A2F1F;
    --accent: #edc01f;
    --shadow: rgba(44, 36, 22, 0.12);
    --max-width: min(1180px, 90vw);
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 12px;
    --transition: 200ms ease;
    --transition-slow: 420ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: clip;
}

html.i18n-loading body {
    visibility: hidden;
    opacity: 0;
}

body {
    margin: 0;
    font-family: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background-color: var(--cream);
    overflow-x: clip;
    /* Modern browsers support clip which doesn't break sticky */

    /* === BACKGROUND PATTERN === */
    /* Alternative: PNG Pattern */
    /* background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.7) 0, rgba(255, 255, 255, 0) 50%),
        radial-gradient(circle at 80% 10%, rgba(232, 212, 184, 0.65) 0, rgba(232, 212, 184, 0) 55%),
        url("../images/bg.png");
    background-attachment: fixed;
    background-size: auto, auto, 260px 180px; */

    /* Current: SVG Croissant Pattern */
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.7) 0, rgba(255, 255, 255, 0) 50%),
        radial-gradient(circle at 80% 10%, rgba(232, 212, 184, 0.65) 0, rgba(232, 212, 184, 0) 55%),
        url("data:image/svg+xml,%3Csvg width='260' height='260' viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C8935B' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M40 50c8 0 16-4 20-10 5-6 10-16 6-20-4-4-14 1-20 6-6 5-10 12-10 20 0 8 4 16 10 22 6 6 16 10 20 6s-1-14-6-20c-5-6-12-10-20-10z' opacity='0.4'/%3E%3Cpath d='M190 130c15 0 30-7 38-18s19-29 11-37c-8-8-26 2-37 12-11 10-18 23-18 37 0 14 7 29 18 40 11 11 29 18 37 11 8-7-3-26-11-37-8-11-23-18-38-18z' opacity='0.25'/%3E%3Cpath d='M120 210l40 30' opacity='0.28'/%3E%3Cpath d='M120 210l6-38 26 12-32 26z' opacity='0.28'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    /* === END BACKGROUND PATTERN === */

    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus-visible {
    text-decoration: underline;
}

h1,
h2,
h3 {
    color: var(--charcoal);
    margin-top: 0;
}

h1 {
    font-size: clamp(2.4rem, 3.8vw, 3.5rem);
    line-height: 1.35;
    letter-spacing: -0.015em;
}

h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 600;
}

h3 {
    font-size: 1.35rem;
    font-weight: 600;
}

p {
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--charcoal);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    z-index: 999;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 0;
}

.site-header.is-sticky {
    box-shadow: 0 12px 32px rgba(28, 46, 43, 0.12);
}

.site-header.is-sticky .nav-inner {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.15rem clamp(1rem, 3vw, 1.5rem);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    transition: padding var(--transition);
}

.brand-mark {
    display: grid;
    gap: 0.1rem;
}

.brand-name {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage-dark);
}

.nav-links {
    display: flex;
    justify-content: center;
}

.nav-links ul {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

html[dir="rtl"] .nav-links ul {
    direction: ltr;
}

/* Nav link double underline - two thin lines centered under text */
.nav-links a {
    position: relative;
    display: inline-block;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
    padding: 0.4rem 0;
    transition: color 220ms cubic-bezier(0.2, 0.9, 0.3, 1);
}

.nav-links a::before,
.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    transform-origin: center;
    transform: translateX(-50%) scaleX(0);
    transition: transform 220ms cubic-bezier(0.2, 0.9, 0.3, 1);
    height: 2px;
    /* line thickness */
    width: 100%;
    background: var(--sage-dark);
    border-radius: 2px;
}

/* Position the two lines: evenly spaced under text */
.nav-links a::before {
    bottom: -6px;
    /* first line */
}

.nav-links a::after {
    bottom: -10px;
    /* second line, 4px below first */
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--sage-dark);
    text-decoration: none;
    outline: 2px solid var(--sage-dark);
    outline-offset: 4px;
}

/* Animate underlines on hover and active state */
.nav-links a:hover::before,
.nav-links a:hover::after,
.nav-links a:focus-visible::before,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::before,
.nav-links a[aria-current="page"]::after {
    transform: translateX(-50%) scaleX(1);
}

/* Active page indicator */
.nav-links a[aria-current="page"] {
    color: var(--sage-dark);
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

.nav-link {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.35rem 0.5rem;
    white-space: nowrap;
    transition: color var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--sage-dark);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.nav-toggle span:nth-child(2),
.nav-toggle span:nth-child(3) {
    position: absolute;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--charcoal);
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle span:nth-child(2) {
    top: 18px;
}

.nav-toggle span:nth-child(3) {
    top: 26px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1500;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(127, 156, 137, 0.18);
    transition: box-shadow var(--transition), padding var(--transition), background-color var(--transition);
}

@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    .btn,
    a,
    button,
    .product-card,
    .value-card,
    .nav-toggle,
    .filter-btn {
        user-select: none;
        -webkit-user-select: none;
    }
}

.promo-banner {
    background-color: var(--sage);
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    padding: 0.75rem 1rem;
    text-align: center;
}

.promo-banner p {
    margin: 0;
}

.hero {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 0 4rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.5rem;
    align-items: center;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.hero-copy p {
    margin-bottom: 2rem;
}

.hero-kicker {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--sage-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    max-width: 40ch;
    margin-top: -0.5rem;
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 0.5rem;
}

/* Enhanced Hero Button Hover Effects */
.hero-actions .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-actions .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-actions .btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Primary Button - Golden Shimmer Effect */
.hero-actions .btn-primary {
    background: linear-gradient(135deg, #edc01f 0%, #d4a817 100%);
    box-shadow: 0 8px 25px rgba(237, 192, 31, 0.4);
}

.hero-actions .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.hero-actions .btn-primary:hover {
    background: linear-gradient(135deg, #f5d14a 0%, #edc01f 100%);
    box-shadow:
        0 12px 40px rgba(237, 192, 31, 0.6),
        0 0 30px rgba(237, 192, 31, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-4px) scale(1.05);
}

/* Outline Button - Golden Border Glow */
.hero-actions .btn-outline {
    border: 2px solid #edc01f;
    color: #edc01f;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(237, 192, 31, 0.2);
}

.hero-actions .btn-outline::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 999px;
    padding: 2px;
    background: linear-gradient(45deg, #edc01f, #f5d14a, #edc01f);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-actions .btn-outline:hover {
    background: linear-gradient(135deg, rgba(237, 192, 31, 0.15), rgba(245, 209, 74, 0.15));
    border-color: #f5d14a;
    color: #f5d14a;
    box-shadow:
        0 8px 30px rgba(237, 192, 31, 0.4),
        0 0 40px rgba(237, 192, 31, 0.3),
        inset 0 0 20px rgba(237, 192, 31, 0.1);
    transform: translateY(-4px) scale(1.05);
}

.hero-actions .btn-outline:hover::after {
    opacity: 1;
    animation: borderRotate 2s linear infinite;
}

@keyframes borderRotate {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }

    50% {
        filter: hue-rotate(15deg) brightness(1.2);
    }

    100% {
        filter: hue-rotate(0deg) brightness(1);
    }
}

/* Sparkle Effect on Hover */
.hero-actions .btn:hover {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.1);
    }
}


.hero-metadata {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 420px;
    padding-top: 1rem;
}

.metric {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--sage-dark);
}

.metric-label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: -15% -10% -10% -5%;
    background: transparent;
    /* Removed white circular background */
    border-radius: 50%;
    z-index: -1;
    display: none;
    /* Hide the background element completely */
}


.hero-media img {
    max-width: min(480px, 100%);
    filter: drop-shadow(0 24px 36px rgba(64, 84, 76, 0.18));
    animation: heroFloat 3s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.hero-overlay-card {
    position: absolute;
    bottom: -1.5rem;
    left: 10%;
    background: rgba(127, 156, 137, 0.92);
    color: #fff;
    padding: 1.4rem 1.8rem;
    border-radius: var(--radius-md);
    max-width: 260px;
    box-shadow: 0 20px 44px rgba(64, 84, 76, 0.22);
    font-size: 0.95rem;
    display: grid;
    gap: 0.6rem;
    display: none;
}

.hero-overlay-card span {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    z-index: 10;
    animation: scrollFloat 2s ease-in-out infinite;
}

@keyframes scrollFloat {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

.scroll-text {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #000000;
    transition: color 0.3s ease;
    text-shadow: 0 2px 12px rgba(205, 159, 71, 0.8),
        0 4px 20px rgba(184, 138, 58, 0.5),
        0 0 10px rgba(212, 175, 55, 0.6);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--sage-dark);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--sage-dark) 0%, transparent 100%);
    animation: scrollLineMove 1.5s ease-in-out infinite;
}

/* Hover effects */
.scroll-indicator:hover .scroll-text {
    color: rgba(220, 220, 220, 0.9);
}

.scroll-indicator:hover .scroll-line {
    background: var(--sage);
}

/* Line animation */
@keyframes scrollLineMove {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

/* Hide on mobile if needed */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 1rem;
    }

    .scroll-line {
        height: 30px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition);
    cursor: pointer;
    box-shadow: none;
    white-space: nowrap;
    min-width: fit-content;
    min-height: 48px;
    line-height: 1.2;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(64, 84, 76, 0.18);
}

.btn-primary {
    background-color: var(--sage);
    color: #fff;
    box-shadow: 0 14px 32px rgba(96, 126, 110, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background-color: var(--sage-dark);
    box-shadow: 0 24px 44px rgba(96, 126, 110, 0.28);
}

.btn-outline {
    background-color: transparent;
    color: var(--sage-dark);
    border-color: var(--sage-dark);
    box-shadow: 0 10px 24px rgba(64, 84, 76, 0.12);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background-color: rgba(127, 156, 137, 0.1);
    box-shadow: 0 20px 42px rgba(64, 84, 76, 0.18);
}

.btn-secondary {
    background-color: var(--blush);
    color: var(--charcoal);
    box-shadow: 0 12px 28px rgba(211, 159, 159, 0.22);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background-color: #f0caca;
    box-shadow: 0 22px 46px rgba(211, 159, 159, 0.24);
}

.btn-dark {
    background-color: var(--charcoal);
    color: #fff;
    box-shadow: 0 14px 34px rgba(47, 47, 43, 0.28);
}

.btn-dark:hover,
.btn-dark:focus-visible {
    background-color: #1f1f1c;
    box-shadow: 0 24px 52px rgba(47, 47, 43, 0.32);
}

.btn-small {
    padding: 0.55rem 1.05rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

.nav-actions .btn-primary {
    padding-inline: 1.1rem;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.85);
    color: var(--sage-dark);
    border: 2px solid rgba(205, 159, 71, 0.25);
    padding: 0.6rem 1.4rem;
    box-shadow: 0 6px 16px rgba(205, 159, 71, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    background: linear-gradient(135deg, rgba(205, 159, 71, 0.15), rgba(184, 138, 58, 0.15));
    border-color: var(--sage-dark);
    box-shadow: 0 12px 32px rgba(205, 159, 71, 0.25);
    transform: translateY(-1px);
}

/* Enhanced golden hover for outline buttons (Quick View) */
.btn-outline:hover,
.btn-outline:focus-visible {
    background: linear-gradient(135deg, rgba(205, 159, 71, 0.12), rgba(184, 138, 58, 0.12));
    border-color: var(--sage-dark);
    box-shadow: 0 12px 32px rgba(205, 159, 71, 0.22);
    transform: translateY(-1px);
}

.btn.is-added {
    animation: cartPulse 0.4s ease;
}

@keyframes cartPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Lightweight cart icon + badge */
.cart-icon-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--sage-dark);
    cursor: pointer;
    padding: 0.5rem;
    transition: color var(--transition), transform var(--transition);
}

.cart-icon-button:hover,
.cart-icon-button:focus-visible {
    color: var(--sage);
    transform: scale(1.05);
}

.cart-icon-button:focus-visible {
    outline: 2px solid var(--sage-dark);
    outline-offset: 4px;
    border-radius: 8px;
}

.cart-icon-svg {
    width: 24px;
    height: 24px;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 9px;
    background: var(--sage);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1;
}

.values {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4.5rem 0;
}

.values h2 {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 1.1rem;
    color: var(--sage-dark);
    margin-bottom: 2.5rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2.25rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-md);
    box-shadow: 0 14px 34px var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-card h3 {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 1rem;
    color: var(--charcoal);
}

.value-card p {
    font-size: 0.98rem;
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--soft-cream);
    display: grid;
    place-items: center;
    border: 1px solid var(--sage-muted);
}

.value-icon svg {
    width: 34px;
    height: 34px;
    stroke: var(--sage-dark);
}

/* ========================================
   PSYCHOLOGICAL HOVER EFFECTS
   ======================================== */

/* Base card hover preparation */
.value-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 1. HEALTHY INGREDIENTS - "Purity Pulse" 
   Emotion: Safety, Trust, Care */
.value-grid .value-card:nth-child(1) {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-grid .value-card:nth-child(1)::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center,
            rgba(76, 175, 80, 0.15) 0%,
            rgba(139, 195, 74, 0.08) 40%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.value-grid .value-card:nth-child(1):hover::before {
    opacity: 1;
    animation: purityPulse 3s ease-in-out infinite;
}

.value-grid .value-card:nth-child(1):hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(76, 175, 80, 0.25),
        0 0 40px rgba(76, 175, 80, 0.15),
        0 14px 34px var(--shadow);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(232, 245, 233, 0.95) 100%);
}

.value-grid .value-card:nth-child(1):hover .value-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-color: #4caf50;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

.value-grid .value-card:nth-child(1):hover .value-icon svg {
    stroke: #4caf50;
    animation: iconBreathe 2s ease-in-out infinite;
}

@keyframes purityPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes iconBreathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

/* 2. DAILY PRODUCTION - "Fresh Energy Spark"
   Emotion: Vitality, Freshness, Activity */
.value-grid .value-card:nth-child(2) {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.value-grid .value-card:nth-child(2)::before,
.value-grid .value-card:nth-child(2)::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #ff9800, #ff6f00);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.8);
}

.value-grid .value-card:nth-child(2)::before {
    top: 20%;
    left: 10%;
}

.value-grid .value-card:nth-child(2)::after {
    bottom: 25%;
    right: 15%;
}

.value-grid .value-card:nth-child(2):hover::before {
    animation: sparkFloat1 1.5s ease-out infinite;
}

.value-grid .value-card:nth-child(2):hover::after {
    animation: sparkFloat2 1.5s ease-out 0.3s infinite;
}

.value-grid .value-card:nth-child(2):hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 60px rgba(255, 152, 0, 0.3),
        0 0 40px rgba(255, 193, 7, 0.2),
        0 14px 34px var(--shadow);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 243, 224, 0.95) 100%);
}

.value-grid .value-card:nth-child(2):hover .value-icon {
    transform: rotate(8deg) scale(1.15);
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-color: #ff9800;
    box-shadow: 0 0 25px rgba(255, 152, 0, 0.5);
    animation: energyPulse 0.8s ease-in-out infinite;
}

.value-grid .value-card:nth-child(2):hover .value-icon svg {
    stroke: #ff6f00;
}

@keyframes sparkFloat1 {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-15px, -30px) scale(1.5);
    }
}

@keyframes sparkFloat2 {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(20px, -35px) scale(1.8);
    }
}

@keyframes energyPulse {

    0%,
    100% {
        transform: rotate(8deg) scale(1.15);
    }

    50% {
        transform: rotate(8deg) scale(1.2);
    }
}

/* 3. HIGH EXPANSION - "Growth Cascade"
   Emotion: Ambition, Potential, Scaling */
.value-grid .value-card:nth-child(3) {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-grid .value-card:nth-child(3)::before,
.value-grid .value-card:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

.value-grid .value-card:nth-child(3)::before {
    width: 100px;
    height: 100px;
    border-color: rgba(63, 81, 181, 0.6);
}

.value-grid .value-card:nth-child(3)::after {
    width: 150px;
    height: 150px;
    border-color: rgba(103, 58, 183, 0.4);
}

.value-grid .value-card:nth-child(3):hover::before {
    animation: rippleExpand1 2s ease-out;
}

.value-grid .value-card:nth-child(3):hover::after {
    animation: rippleExpand2 2s ease-out 0.4s;
}

.value-grid .value-card:nth-child(3):hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow:
        0 25px 70px rgba(63, 81, 181, 0.35),
        0 10px 40px rgba(103, 58, 183, 0.25),
        0 0 50px rgba(63, 81, 181, 0.2),
        0 14px 34px var(--shadow);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(232, 234, 246, 0.95) 100%);
}

.value-grid .value-card:nth-child(3):hover .value-icon {
    transform: scale(1.2) rotate(5deg);
    background: linear-gradient(135deg, #e8eaf6, #c5cae9);
    border-color: #3f51b5;
    box-shadow:
        0 0 30px rgba(63, 81, 181, 0.6),
        0 5px 20px rgba(63, 81, 181, 0.3);
}

.value-grid .value-card:nth-child(3):hover .value-icon svg {
    stroke: #3f51b5;
    animation: growRotate 3s linear infinite;
}

@keyframes rippleExpand1 {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@keyframes rippleExpand2 {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.8);
        opacity: 0;
    }
}

@keyframes growRotate {
    0% {
        transform: scale(1.2) rotate(0deg);
    }

    100% {
        transform: scale(1.2) rotate(360deg);
    }
}

/* 4. TRANSPARENT & SUPPORTIVE - "Community Warmth"
   Emotion: Openness, Connection, Care */
.value-grid .value-card:nth-child(4) {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.value-grid .value-card:nth-child(4)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(255, 112, 67, 0.12) 0%,
            rgba(255, 138, 101, 0.08) 50%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: var(--radius-md);
    pointer-events: none;
}

.value-grid .value-card:nth-child(4):hover::before {
    opacity: 1;
    animation: warmthGlow 2.5s ease-in-out infinite;
}

.value-grid .value-card:nth-child(4):hover {
    transform: translateY(-8px) scaleX(1.02);
    box-shadow:
        0 20px 60px rgba(255, 112, 67, 0.3),
        0 0 50px rgba(255, 138, 101, 0.2),
        0 14px 34px var(--shadow);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 235, 238, 0.95) 100%);
    border: 1px solid rgba(255, 112, 67, 0.2);
}

.value-grid .value-card:nth-child(4):hover .value-icon {
    transform: scale(1.15);
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    border-color: #ff7043;
    box-shadow:
        0 0 25px rgba(255, 112, 67, 0.5),
        0 5px 20px rgba(255, 112, 67, 0.3);
    animation: heartBeat 1.2s ease-in-out infinite;
}

.value-grid .value-card:nth-child(4):hover .value-icon svg {
    stroke: #ff5722;
}

@keyframes warmthGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1.15);
    }

    10%,
    30% {
        transform: scale(1.2);
    }

    20%,
    40% {
        transform: scale(1.15);
    }
}

/* Smooth icon transitions */
.value-icon {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-icon svg {
    transition: all 0.3s ease;
}


.story {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4.5rem 0;
    display: grid;
    gap: 3rem;
}

/* ========================================
   INTERACTIVE TIMELINE
   ======================================== */

.timeline-interactive {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 2rem 0;
}

/* Central vertical line with gradient */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg,
            #edc01f 0%,
            #d4a817 25%,
            #7f9c89 75%,
            #607e6e 100%);
    transform: translateX(-50%);
    border-radius: 999px;
    box-shadow: 0 0 20px rgba(237, 192, 31, 0.3);
}

/* Timeline item positioning */
.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    margin-bottom: 4rem;
    align-items: flex-start;
}

/* Left-aligned items */
.timeline-item--left .timeline-content-wrapper {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
    padding-right: 3rem;
}

.timeline-item--left .timeline-node {
    grid-column: 2;
    grid-row: 1;
}

.timeline-item--left .timeline-connector {
    grid-column: 2;
    grid-row: 1;
    left: 50%;
    transform: translateX(-100%);
}

/* Right-aligned items */
.timeline-item--right .timeline-content-wrapper {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
    padding-left: 3rem;
}

.timeline-item--right .timeline-node {
    grid-column: 2;
    grid-row: 1;
}

.timeline-item--right .timeline-connector {
    grid-column: 2;
    grid-row: 1;
    right: 50%;
    transform: translateX(100%);
}

/* Timeline node (pulsing dot) */
.timeline-node {
    position: relative;
    width: 24px;
    height: 24px;
    z-index: 10;
    margin-top: 0.5rem;
}

.timeline-node-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #edc01f, #f5d14a);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(237, 192, 31, 0.3),
        0 4px 12px rgba(237, 192, 31, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-node-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, rgba(237, 192, 31, 0.4), transparent 70%);
    border-radius: 50%;
    animation: nodePulse 2s ease-in-out infinite;
}

@keyframes nodePulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Connecting line from node to content */
.timeline-connector {
    position: absolute;
    top: 0.75rem;
    width: 2.5rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(237, 192, 31, 0.3), rgba(237, 192, 31, 0.6));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Timeline content wrapper */
.timeline-content-wrapper {
    max-width: 420px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Timeline header (always visible) */
.timeline-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-item--left .timeline-header {
    align-items: flex-end;
}

.timeline-item--right .timeline-header {
    align-items: flex-start;
}

/* Year badge */
.timeline-year {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #edc01f 0%, #f5d14a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 12px rgba(237, 192, 31, 0.3);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-year::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #edc01f, #f5d14a);
    border-radius: 999px;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Title */
.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.3;
    margin: 0;
    transition: all 0.3s ease;
}

/* Hidden content by default */
.timeline-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.timeline-content p {
    padding: 1.5rem 2rem;
    margin: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

/* ========================================
   HOVER STATES
   ======================================== */

.timeline-item:hover .timeline-content {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 1.5rem;
}

.timeline-item:hover .timeline-year::after {
    transform: scaleX(1);
}

.timeline-item:hover .timeline-node-core {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 0 3px rgba(237, 192, 31, 0.5),
        0 0 20px rgba(237, 192, 31, 0.6),
        0 8px 24px rgba(237, 192, 31, 0.4);
}

.timeline-item:hover .timeline-node-pulse {
    animation: nodePulseIntense 1.5s ease-in-out infinite;
}

@keyframes nodePulseIntense {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.timeline-item:hover .timeline-connector {
    width: 3rem;
    background: linear-gradient(90deg, rgba(237, 192, 31, 0.6), rgba(237, 192, 31, 0.9));
    box-shadow: 0 0 10px rgba(237, 192, 31, 0.4);
}

.timeline-item:hover .timeline-title {
    color: var(--sage-dark);
    transform: scale(1.02);
}

/* ========================================
   COLORFUL GRADIENTS PER MILESTONE
   ======================================== */

/* Emerald (2019) - New Beginnings */
.timeline-item[data-color="emerald"]:hover .timeline-content p {
    background: linear-gradient(135deg,
            rgba(16, 185, 129, 0.08) 0%,
            rgba(52, 211, 153, 0.12) 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
}

.timeline-item[data-color="emerald"]:hover .timeline-node-core {
    background: linear-gradient(135deg, #10b981, #34d399);
}

/* Amber (2021) - Refinement */
.timeline-item[data-color="amber"]:hover .timeline-content p {
    background: linear-gradient(135deg,
            rgba(245, 158, 11, 0.08) 0%,
            rgba(251, 191, 36, 0.12) 100%);
    border: 1px solid rgba(245, 158, 11, 0.25);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.15);
}

.timeline-item[data-color="amber"]:hover .timeline-node-core {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

/* Violet (2023) - Growth */
.timeline-item[data-color="violet"]:hover .timeline-content p {
    background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.08) 0%,
            rgba(167, 139, 250, 0.12) 100%);
    border: 1px solid rgba(139, 92, 246, 0.25);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

.timeline-item[data-color="violet"]:hover .timeline-node-core {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

/* Cyan (2026) - Future Vision */
.timeline-item[data-color="cyan"]:hover .timeline-content p {
    background: linear-gradient(135deg,
            rgba(6, 182, 212, 0.08) 0%,
            rgba(34, 211, 238, 0.12) 100%);
    border: 1px solid rgba(6, 182, 212, 0.25);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.15);
}

.timeline-item[data-color="cyan"]:hover .timeline-node-core {
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

/* Shimmer effect on hover */
.timeline-item:hover .timeline-content p::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    animation: contentShimmer 2s ease-in-out infinite;
}

@keyframes contentShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .timeline-interactive {
        padding: 1rem 1.5rem;
    }

    .timeline-line {
        left: 2rem;
    }

    .timeline-item,
    .timeline-item--left,
    .timeline-item--right {
        grid-template-columns: auto 1fr;
        margin-bottom: 3rem;
    }

    .timeline-item--left .timeline-content-wrapper,
    .timeline-item--right .timeline-content-wrapper {
        grid-column: 2;
        text-align: left;
        padding-left: 2rem;
        padding-right: 0;
    }

    .timeline-item--left .timeline-node,
    .timeline-item--right .timeline-node {
        grid-column: 1;
    }

    .timeline-item--left .timeline-connector,
    .timeline-item--right .timeline-connector {
        left: 100%;
        right: auto;
        transform: translateX(0);
    }

    .timeline-item--left .timeline-header,
    .timeline-item--right .timeline-header {
        align-items: flex-start;
    }

    .timeline-year {
        font-size: 2rem;
    }

    .timeline-title {
        font-size: 1.1rem;
    }

    .timeline-content p {
        padding: 1.2rem 1.5rem;
    }
}

.provenance {
    padding: 4.5rem 0;
    background: rgba(255, 255, 255, 0.7);
}

.provenance-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.provenance-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.provenance-list strong {
    color: var(--charcoal);
}

.provenance-map {
    background: transparent;
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    height: 600px;
    /* Increased from 500px to prevent top cutoff */
    position: relative;
}


.provenance-map svg {
    width: 100%;
}

.provenance-map canvas {
    width: 100%;
    max-width: 600px;
    height: auto;
    aspect-ratio: 1;
    display: block;
    cursor: grab;
    transition: transform 0.3s ease;
    position: relative;
    top: 0;
    margin-top: 40px;
    /* Move globe down to prevent top cutoff */
}


.provenance-map canvas:hover {
    transform: scale(1.02);
}

.provenance-map canvas:active {
    cursor: grabbing;
}

.chef-spotlight {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5.25rem 1.5rem;
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(380px, 1fr);
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
}

.chef-media {
    position: relative;
    isolation: isolate;
}

.chef-media::before {
    content: "";
    position: absolute;
    inset: -3% -4% -4% -3%;
    border-radius: calc(var(--radius-lg) * 1.1);
    background: rgba(127, 156, 137, 0.18);
    z-index: -1;
    filter: blur(0);
}

.chef-media img {
    width: 92%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 28px 60px rgba(64, 84, 76, 0.22);
    background: #fff;
}

.chef-content {
    display: grid;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 3vw, 2.5rem);
    box-shadow: 0 30px 64px rgba(64, 84, 76, 0.22);
    max-width: 560px;
}

#chef-heading {
    margin-bottom: 0rem;
    line-height: 1.2;
}

.chef-highlights {
    display: grid;
    gap: 0.7rem;
    padding-left: 1rem;
}

.chef-content p {
    font-size: 1rem;
    line-height: 1.65;
}

.chef-highlights li {
    position: relative;
}

.chef-highlights li::before {
    content: "";
    position: absolute;
    left: -1rem;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage-dark);
}

.chef-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.product-section {
    padding: 4.5rem 0;
}

.section-header {
    max-width: var(--max-width);
    margin: 0 auto 2.5rem;
}

.section-kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.88rem;
    color: var(--sage-dark);
    margin-bottom: 1rem;
}

.product-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: #FFFFFF;
    border-radius: var(--radius-lg);
    /* Softer, larger radius */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(237, 192, 31, 0.1);
    /* Subtle golden border */
}

/* "Health Glow" Hover Effect & Lift */
.product-card:hover,
.product-card:focus-within {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px -4px rgba(237, 192, 31, 0.15),
        /* Golden glow */
        0 8px 16px -4px rgba(0, 0, 0, 0.05);
    border-color: rgba(237, 192, 31, 0.3);
}

.product-media {
    position: relative;
    aspect-ratio: 1/1;
    /* Square ratio for reduced height */
    overflow: hidden;
    background: #f8f8f8;
}

/* Smooth Image Zoom */
.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .product-media img {
    transform: scale(1.08);
    /* Subtle, slow zoom */
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--charcoal);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 2;
    border: none;
}

.product-badge--calm {
    background: rgba(255, 255, 255, 0.95);
    color: #557b65;
    /* Muted green text */
}

.product-badge--bright {
    background: rgba(255, 255, 255, 0.95);
    color: #d4a817;
    /* Golden text */
}

/* Actions Overlay - Appears on Hover */
.product-actions-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 36, 22, 0.2);
    /* Dark delicate tint */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.product-card:hover .product-actions-overlay,
.product-card:focus-within .product-actions-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Circular Action Buttons */
.btn-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--charcoal);
    border: none;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.3, 1.5, 0.5, 1);
    /* Bouncy pop */
}

.btn-icon:hover {
    transform: scale(1.1);
    color: var(--sage-dark);
    box-shadow: 0 12px 24px rgba(237, 192, 31, 0.25);
}

/* Success animation when item added to cart */
.btn-icon.is-added {
    animation: addToCartBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes addToCartBounce {
    0% {
        transform: scale(0.9);
    }

    25% {
        transform: scale(1.3) rotate(10deg);
        color: var(--sage);
    }

    50% {
        transform: scale(1.1) rotate(-5deg);
    }

    75% {
        transform: scale(1.25) rotate(3deg);
        box-shadow: 0 0 25px rgba(237, 192, 31, 0.6);
    }

    100% {
        transform: scale(0.9) rotate(0deg);
    }
}

.product-info {
    padding: 1.5rem 2rem 2rem;
    background: #FFFFFF;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-header {
    display: block;
    text-align: center;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    /* Elegant serif */
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.product-card:hover h3 {
    color: var(--sage-dark);
}

.product-price {
    font-size: 1.1rem;
    color: rgba(58, 47, 31, 0.8);
    font-weight: 500;
    font-family: 'Work Sans', sans-serif;
}

.product-category-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--charcoal);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    pointer-events: none;
    backdrop-filter: blur(8px);
    z-index: 2;
}

.product-desc {
    font-size: 0.95rem;
    text-align: center;
    color: rgba(58, 47, 31, 0.7);
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-tags {
    justify-content: center;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .product-actions-overlay {
        opacity: 1;
        transform: translateY(0);
        background: rgba(44, 36, 22, 0.1);
        backdrop-filter: none;
        bottom: 0.5rem;
        top: auto;
        height: auto;
        padding: 0.5rem;
    }

    .btn-icon {
        width: 42px;
        height: 42px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

.carousel {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    scroll-behavior: smooth;
    width: 100%;
    transition: transform var(--transition);
}

.carousel .product-card {
    min-width: 380px;
    flex: 0 0 380px;
}

.carousel-control {
    display: none;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    place-items: center;
    font-size: 1.8rem;
    color: var(--sage-dark);
    box-shadow: 0 12px 28px var(--shadow);
    cursor: pointer;
    transition: transform var(--transition), background-color var(--transition);
}

.carousel-control:hover,
.carousel-control:focus-visible {
    transform: translateY(-3px);
    background-color: var(--sage);
    color: #fff;
}

.carousel-control[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.testimonials {
    padding: 4.5rem 0;
    background: rgba(255, 255, 255, 0.7);
}

.testimonial-carousel {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0 0 1rem;
}

.testimonial-carousel::before,
.testimonial-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(60px, 8vw, 120px);
    pointer-events: none;
    z-index: 2;
}

.testimonial-carousel::before {
    left: 0;
    background: linear-gradient(90deg, rgba(248, 244, 236, 1) 0%, rgba(248, 244, 236, 0) 100%);
}

.testimonial-carousel::after {
    right: 0;
    background: linear-gradient(270deg, rgba(248, 244, 236, 1) 0%, rgba(248, 244, 236, 0) 100%);
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    will-change: transform;
}

.testimonial-card {
    min-width: clamp(280px, 28vw, 360px);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.8rem;
    box-shadow: 0 22px 50px rgba(64, 84, 76, 0.2);
    display: grid;
    gap: 0.8rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover,
.testimonial-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 30px 64px rgba(64, 84, 76, 0.24);
}

.testimonial-card blockquote {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-name {
    display: block;
    font-weight: 600;
}

.testimonial-meta {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonial-stars {
    font-size: 1.6rem;
    color: #edc01f;
    letter-spacing: 0.15em;
    margin: -0.2rem 0;
}

.journal {
    padding: 4.5rem 0;
}

.journal-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.journal-card {
    background: rgba(255, 255, 255, 0.94);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: 0 18px 44px rgba(64, 84, 76, 0.18);
    transition: transform var(--transition), box-shadow var(--transition);
}

.journal-card:hover,
.journal-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 26px 54px rgba(64, 84, 76, 0.24);
}

.journal-card a {
    display: grid;
    gap: 1rem;
}

.journal-tag {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sage-dark);
}

.journal-meta {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(63, 64, 58, 0.7);
}

.journal-actions {
    text-align: center;
    margin-top: 2.5rem;
}

.events {
    padding: 4.5rem 0;
    background: rgba(255, 255, 255, 0.7);
}

.events-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
}

.event-list {
    display: grid;
    gap: 1.4rem;
}

.event-list li {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 1.25rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    box-shadow: 0 18px 44px rgba(64, 84, 76, 0.16);
}

.event-date {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage-dark);
}

.events-form {
    background: rgba(127, 156, 137, 0.14);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: grid;
    gap: 1rem;
    box-shadow: 0 22px 48px rgba(64, 84, 76, 0.16);
}

.events-form input,
.events-form select {
    padding: 1rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(127, 156, 137, 0.4);
    background: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.5;
}

.events-form input,
.events-form select,
.events-form button {
    width: 100%;
}

.events-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(89, 115, 98, 0.5) 50%), linear-gradient(135deg, rgba(89, 115, 98, 0.5) 50%, transparent 50%);
    background-position: right 1.1rem center, right 0.75rem center;
    background-size: 9px 9px, 9px 9px;
    background-repeat: no-repeat;
    padding-right: 2.75rem;
}

.events-form input::placeholder,
.events-form select::placeholder {
    color: rgba(63, 64, 58, 0.6);
}

.form-footnote {
    font-size: 0.85rem;
    color: rgba(63, 64, 58, 0.75);
}

.community {
    position: relative;
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    overflow: hidden;
}


.community-shell {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3.5rem clamp(1.75rem, 4vw, 3rem);
    background: rgba(255, 255, 255, 0.82);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(127, 156, 137, 0.18);
    box-shadow: 0 32px 80px rgba(49, 66, 59, 0.18);
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
}

.community-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

.community-copy {
    display: grid;
    gap: 1.5rem;
    max-width: 520px;
    color: var(--text);
}

.community-lede {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(63, 64, 58, 0.8);
}

.community-highlights {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-md);
    box-shadow: inset 0 0 0 1px rgba(127, 156, 137, 0.16), 0 24px 50px rgba(64, 84, 76, 0.08);
}

.community-highlights div {
    display: grid;
    gap: 0.4rem;
    text-align: left;
}

.community-highlights dt {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--sage-dark);

}

.community-highlights dd {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(63, 64, 58, 0.75);
    width: 85%;
}

.community-media {
    display: flex;
    justify-content: center;
    position: relative;
}

@keyframes floatSoft {

    0%,
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) scale(1.05) rotate(10deg);
    }
}

.community-gallery {
    position: relative;
    margin: 0 auto;
    width: clamp(320px, 32vw, 440px);
    height: clamp(360px, 36vw, 500px);
    perspective: 1400px;
    touch-action: pan-y;
    cursor: grab;
    color: var(--gallery-text, #ffffff);
    user-select: none;
    -webkit-user-select: none;
    border-radius: 50%;
    border: 2px solid rgba(205, 159, 71, 0.3);
    background:
        radial-gradient(circle at 30% 40%, rgba(205, 159, 71, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(184, 138, 58, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(248, 244, 236, 0.3) 100%);
    box-shadow:
        inset 0 0 60px rgba(205, 159, 71, 0.1),
        0 20px 60px rgba(205, 159, 71, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: galleryGlow 8s ease-in-out infinite;
}

@keyframes galleryGlow {

    0%,
    100% {
        box-shadow:
            inset 0 0 60px rgba(205, 159, 71, 0.1),
            0 20px 60px rgba(205, 159, 71, 0.15),
            0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    }

    50% {
        box-shadow:
            inset 0 0 80px rgba(205, 159, 71, 0.18),
            0 20px 80px rgba(205, 159, 71, 0.25),
            0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    }
}

#community-heading {
    margin-bottom: 0rem;
}

.community-gallery.is-dragging {
    cursor: grabbing;
}

.community-gallery::before {
    content: "";
    position: absolute;
    inset: 4%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 65% 70%, rgba(205, 159, 71, 0.15) 0%, transparent 55%);
    z-index: 0;
    animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

/* Outer decorative ring with rotating sparkles */
.community-gallery::after {
    content: "";
    position: absolute;
    inset: -8%;
    border-radius: 50%;
    background:
        radial-gradient(3px 3px at 50% 2%, #edc01f 50%, transparent 50%),
        radial-gradient(2px 2px at 15% 20%, rgba(205, 159, 71, 0.6) 50%, transparent 50%),
        radial-gradient(3px 3px at 85% 25%, rgba(205, 159, 71, 0.7) 50%, transparent 50%),
        radial-gradient(2px 2px at 10% 50%, rgba(205, 159, 71, 0.5) 50%, transparent 50%),
        radial-gradient(3px 3px at 90% 55%, rgba(205, 159, 71, 0.8) 50%, transparent 50%),
        radial-gradient(2px 2px at 20% 85%, rgba(205, 159, 71, 0.6) 50%, transparent 50%),
        radial-gradient(3px 3px at 80% 90%, rgba(205, 159, 71, 0.7) 50%, transparent 50%),
        radial-gradient(2px 2px at 50% 98%, rgba(205, 159, 71, 0.5) 50%, transparent 50%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
    animation: rotateSparkles 20s linear infinite;
}

@keyframes rotateSparkles {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.community-gallery__ring {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    z-index: 1;
}

@keyframes bounceSoft {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-12px);
    }
}

.community-gallery__item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(200px, 30vw, 280px);
    height: clamp(280px, 36vw, 360px);
    transform-style: preserve-3d;
    transform: translate3d(-50%, -50%, 0);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 24px 60px rgba(64, 84, 76, 0.18);
    border-radius: calc(var(--gallery-radius, 0.08) * 100%);
    display: grid;
    color: inherit;
}

.community-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 0.6s ease-out;
}

.community-gallery__item figcaption {
    position: absolute;
    inset: auto 0 0;
    padding: 1.1rem 1.3rem 1.35rem;
    background: linear-gradient(180deg, rgba(31, 44, 39, 0) 0%, rgba(31, 44, 39, 0.78) 85%);
    display: grid;
    gap: 0.4rem;
    color: inherit;
}

.community-gallery__handle {
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.community-gallery__note {
    font-size: 0.96rem;
    letter-spacing: 0.01em;
    line-height: 1.5;
}

.community-gallery__item:focus-visible {
    outline: 3px solid rgba(127, 156, 137, 0.6);
    outline-offset: 6px;
}

.community-actions {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.highlight {
    color: var(--sage-dark);
}

.press {
    padding: 4.5rem 0;
    background: rgba(255, 255, 255, 0.7);
}

.press-logos {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(63, 64, 58, 0.68);
    font-weight: 600;
    text-align: center;
}

.specials {
    padding: 4.5rem 0;
    background: rgba(255, 255, 255, 0.7);
}

.specials-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.special-card {
    background-color: var(--soft-cream);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid var(--sage-muted);
    box-shadow: 0 16px 40px rgba(64, 84, 76, 0.16);
}

.special-card p {
    padding-bottom: 20px;
}

/* ============================================
   CTA BANNER - Nature Wellness Theme (Health & Safety)
   Light, airy design that evokes trust and freshness
   ============================================ */

.cta-banner {
    margin: 6rem auto;
    max-width: var(--max-width);
    border-radius: 40px;
    padding: 0;
    /* Soft light background - feels clean and healthy */
    background:
        linear-gradient(180deg,
            #f8fcf8 0%,
            #f0f8f2 50%,
            #e8f5eb 100%);
    color: var(--charcoal);
    position: relative;
    overflow: hidden;
    /* Soft protective shadow */
    box-shadow:
        0 40px 100px rgba(90, 138, 107, 0.12),
        0 0 0 1px rgba(90, 138, 107, 0.06),
        inset 0 0 80px rgba(255, 255, 255, 0.9);
    min-height: auto;
    display: flex;
    align-items: center;
}

/* Breathing animation - feels alive/fresh */
@keyframes ctaBreathe {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 30px 80px rgba(90, 138, 107, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    }

    50% {
        transform: scale(1.003);
        box-shadow: 0 35px 90px rgba(90, 138, 107, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    }
}

/* Organic blob shapes - soft, non-threatening = safety */
.cta-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    /* Organic blob shape instead of perfect circle */
    border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%;
    animation: floatOrganic 15s ease-in-out infinite;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -35%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 55%);
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
    animation: floatOrganic 18s ease-in-out infinite reverse;
}

@keyframes floatOrganic {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    33% {
        transform: translateY(-20px) rotate(5deg) scale(1.02);
    }

    66% {
        transform: translateY(-10px) rotate(-3deg) scale(0.98);
    }
}

/* Leaf decorations in corners */
.cta-banner .cta-content::before {
    content: '🌿';
    position: absolute;
    left: 40px;
    top: 40px;
    font-size: 55px;
    opacity: 0.18;
    z-index: 0;
    animation: leafSway 6s ease-in-out infinite;
}

.cta-banner .cta-content::after {
    content: '🍃';
    position: absolute;
    right: 45px;
    bottom: 40px;
    font-size: 45px;
    opacity: 0.14;
    z-index: 0;
    animation: leafSway 8s ease-in-out infinite 1s;
}

/* Leaf sway animation - natural, calming */
@keyframes leafSway {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    75% {
        transform: rotate(-5deg);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 4rem;
    padding: 4rem 4.5rem;
    width: 100%;
}

/* Left column - Text content */
.cta-content-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-content h2 {
    color: #2d4a3a;
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 700px;
}

.cta-content p {
    color: #5a7a68;
    font-size: clamp(1.05rem, 1.5vw, 1.15rem);
    line-height: 1.7;
    margin: 0;
    max-width: 550px;
}

/* Right column - Call-to-action card */
.cta-action-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.cta-action-card::before {
    content: '🥐';
    font-size: 80px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

/* Green-themed button - inviting and healthy */
.cta-action-card .btn {
    width: 100%;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: #fff;
    color: #3d6b4e;
    border: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-action-card .btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #f0fff4;
}

.cta-action-card .btn:active {
    transform: translateY(-1px) scale(1.01);
}

/* Alternative: If HTML doesn't support the new structure */
.cta-content:not(.cta-content-text) {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding: 4.5rem 3rem;
}

.cta-content:not(.cta-content-text) h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    color: #2d4a3a;
}

.cta-content:not(.cta-content-text) p {
    text-align: center;
    max-width: 550px;
    color: #5a7a68;
}

/* Healthy green button */
.cta-content .btn,
.cta-content .btn-dark,
.cta-content:not(.cta-content-text) .btn {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
    background: linear-gradient(135deg, #5a8a6b 0%, #4a7a5b 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    box-shadow:
        0 12px 35px rgba(90, 138, 107, 0.3),
        0 4px 12px rgba(90, 138, 107, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.cta-content .btn::before,
.cta-content .btn-dark::before,
.cta-content:not(.cta-content-text) .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.cta-content .btn:hover,
.cta-content .btn-dark:hover,
.cta-content:not(.cta-content-text) .btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 20px 50px rgba(90, 138, 107, 0.4),
        0 8px 20px rgba(90, 138, 107, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #6a9a7b 0%, #5a8a6b 100%);
}

.cta-content .btn:hover::before,
.cta-content .btn-dark:hover::before,
.cta-content:not(.cta-content-text) .btn:hover::before {
    left: 100%;
}

.cta-content .btn:active,
.cta-content .btn-dark:active,
.cta-content:not(.cta-content-text) .btn:active {
    transform: translateY(-1px) scale(1.01);
}

/* ============================================
   FRANCHISE CTA - Professional Business Theme
   For B2B franchise investors - premium golden theme
   ============================================ */

.franchise-cta {
    /* Premium golden gradient - professional and luxurious */
    background: linear-gradient(135deg,
            #edc01f 0%,
            #d4a817 35%,
            #c49615 70%,
            #b8a458 100%) !important;
    border-radius: 32px;
    box-shadow:
        0 40px 100px rgba(200, 147, 91, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 80px rgba(237, 192, 31, 0.3);
    min-height: 350px;
    position: relative;
    /* Luxurious glowing animation */
    animation: luxuryGlow 4s ease-in-out infinite;
}

@keyframes luxuryGlow {

    0%,
    100% {
        box-shadow:
            0 40px 100px rgba(200, 147, 91, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            0 0 80px rgba(237, 192, 31, 0.3);
    }

    50% {
        box-shadow:
            0 45px 110px rgba(200, 147, 91, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            0 0 100px rgba(237, 192, 31, 0.45);
    }
}

/* Subtle gold accent lines */
.franchise-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 0 0 4px 4px;
}

/* Remove emojis */
.franchise-cta .cta-content::before,
.franchise-cta .cta-content::after {
    display: none !important;
}

/* Professional typography */
.franchise-cta .cta-content h2 {
    color: #fff !important;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.franchise-cta .cta-content p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.1rem;
}

/* Premium white button - luxurious contrast */
.franchise-cta .cta-content .btn,
.franchise-cta .cta-content .btn-dark {
    background: #fff !important;
    color: #2d3548 !important;
    border: none;
    padding: 1.2rem 2.8rem;
    font-weight: 700;
    border-radius: 14px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.25),
        0 5px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.franchise-cta .cta-content .btn:hover,
.franchise-cta .cta-content .btn-dark:hover {
    background: #fffef8 !important;
    transform: translateY(-5px) scale(1.04);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 10px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.5);
}

.newsletter {
    padding: 5rem 0 6rem;
    background: var(--sage-dark);
    color: #fff;
}

.newsletter-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    display: grid;
    gap: 1.5rem;
}

.newsletter h2 {
    color: #fff;
}

.newsletter .section-kicker {
    color: #fff;
}

.newsletter-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.newsletter input {
    padding: 1rem 1.25rem;
    border-radius: 999px;
    border: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.85);
    color: var(--charcoal);
}

.newsletter input::placeholder {
    color: rgba(47, 47, 43, 0.6);
}

.newsletter button {
    border: none;
}

.site-footer {
    background: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
}

.footer-top {
    max-width: var(--max-width);
    margin: 0 auto 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.footer-brand h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    margin: 0.3rem 0;
}

.footer-nav h3,
.footer-social h3 {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.88rem;
    color: var(--sage-dark);
    margin-bottom: 1rem;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-social ul {
    flex-direction: row;
    gap: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--sage-muted);
    transition: background-color var(--transition), transform var(--transition);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    stroke: var(--sage-dark);
    fill: none;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    background-color: var(--sage);
    transform: translateY(-3px);
}

.footer-social a:hover svg,
.footer-social a:focus-visible svg {
    stroke: #fff;
    fill: none;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(47, 47, 43, 0.7);
}

.footer-bottom a {
    color: inherit;
}

.site-footer a.active {
    color: #edc01f !important;
    font-weight: 600;
}


.quickview-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translate(-50%, 100%);
    background: var(--charcoal);
    color: #fff;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    z-index: 1000;
}

.quickview-toast.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
}

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {

    .value-grid,
    .product-grid,
    .timeline,
    .provenance-content,
    .journal-grid,
    .events-content,
    .press-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero {
        padding-inline: 1rem;
    }

    .hero-metadata {
        gap: 1rem;
    }

    .testimonial-track {
        gap: 1.6rem;
    }

    .testimonial-card {
        min-width: clamp(260px, 55vw, 320px);
        padding: 2.4rem 2.05rem;
    }

    .community-layout {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
        gap: clamp(1.75rem, 4vw, 3rem);
    }

    .community-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .community-gallery {
        width: min(400px, 60vw);
        height: clamp(320px, 46vw, 460px);
    }

    .community-gallery__item {
        width: clamp(140px, 32vw, 180px);
        height: clamp(190px, 36vw, 240px);
    }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .nav-inner {
        display: flex;
        flex-wrap: nowrap;
        padding: 0.75rem 1rem;
        gap: 0.5rem;
        justify-content: space-between;
        align-items: center;
    }

    .brand-mark {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .brand-name {
        font-size: 1.1rem;
        line-height: 1.1;
    }

    .brand-tagline {
        font-size: 0.6rem;
    }

    .nav-links {
        position: absolute;
        inset: calc(100% + 0.5rem) 1.25rem auto 1.25rem;
        background: rgba(248, 244, 236, 0.98);
        backdrop-filter: blur(15px);
        padding: 2rem;
        border-radius: var(--radius-md);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-0.5rem);
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav-links[aria-expanded="true"] {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links a {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0.85rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-actions {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }

    .nav-actions .btn-primary {
        display: none !important;
    }

    @media (min-width: 600px) {
        .nav-actions .btn-primary {
            display: inline-flex !important;
            padding: 0.5rem 0.6rem;
            font-size: 0.7rem;
        }
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 4rem 1rem 3rem;
        gap: 2.5rem;
    }


    .hero-copy {
        align-items: center;
    }

    .hero p {
        max-width: 45ch;
    }

    .hero-overlay-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 2rem auto 0;
    }

    .chef-spotlight {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chef-actions {
        justify-content: center;
    }

    .events-content {
        grid-template-columns: 1fr;
    }

    .event-list li {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .testimonial-track {
        gap: 1.4rem;
    }

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: clamp(40px, 12vw, 80px);
    }

    .testimonial-card {
        min-width: clamp(260px, 70vw, 320px);
    }

    .community-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .community-copy {
        text-align: center;
        justify-items: center;
    }

    .community-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        text-align: left;
    }

    .community-actions {
        justify-content: center;
    }

    .community-media {
        margin-top: 0.5rem;
    }

    .community-gallery {
        width: min(360px, 80vw);
        height: clamp(320px, 62vw, 440px);
    }

    .community-gallery__item {
        width: clamp(140px, 42vw, 180px);
        height: clamp(190px, 48vw, 230px);
    }

    .values,
    .product-section,
    .specials,
    .newsletter {
        padding-inline: 1rem;
    }

    .specials-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 680px) {

    .value-grid,
    .product-grid,
    .timeline,
    .provenance-content,
    .journal-grid,
    .specials-grid,
    .press-logos {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 0;
    }

    .product-media img {
        width: 100%;
    }

    .carousel {
        flex-direction: column;
    }

    .carousel-track {
        gap: 1.5rem;
    }

    .carousel .product-card {
        min-width: 100%;
        flex: 0 0 100%;
    }

    .carousel-control {
        order: -1;
    }

    .chef-spotlight {
        padding: 3.5rem 0;
    }

    .testimonial-track {
        gap: 1.2rem;
    }

    .testimonial-card {
        padding: 2.2rem 1.9rem;
        min-width: min(100%, 320px);
    }

    .community-shell {
        padding: 2.75rem 1.5rem 3.25rem;
    }

    .community-copy {
        gap: 1.3rem;
    }

    .community-highlights {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .community-gallery {
        width: min(300px, 88vw);
        height: clamp(300px, 70vw, 420px);
    }

    .community-gallery__item {
        width: clamp(120px, 48vw, 150px);
        height: clamp(170px, 52vw, 210px);
    }

    .event-list li {
        padding: 1.5rem;
    }
}

@media (max-width: 520px) {
    .promo-banner {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
    }

    .hero-actions,
    .chef-actions,
    .community-actions {
        flex-direction: column;
    }

    /* CTA Banner mobile responsive */
    .cta-banner {
        min-height: auto;
        margin: 4rem auto;
    }

    .cta-banner .cta-content::before {
        display: none;
        /* Hide large decorative emoji on mobile */
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 2rem;
    }

    .cta-content h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-action-card {
        padding: 2.5rem 2rem;
        width: 100%;
    }

    .cta-action-card::before {
        font-size: 60px;
    }

    .newsletter-inner {
        padding: 2.5rem 1.5rem;
    }

    .community-gallery {
        width: min(260px, 92vw);
        height: clamp(290px, 78vw, 400px);
    }

    .community-gallery__item {
        width: clamp(110px, 50vw, 140px);
        height: clamp(160px, 56vw, 200px);
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .testimonial-carousel {
        overflow: visible;
    }

    .community-gallery {
        cursor: default;
    }
}

/* =========================================
   Events Modern Section - Card-based Design
   ========================================= */
.events-modern {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.events-modern .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(237, 192, 31, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(237, 192, 31, 0.15);
    border-color: rgba(237, 192, 31, 0.4);
}

.event-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.event-tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #edc01f 0%, #f5d14a 100%);
    color: #1a1a1a;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-tag-premium {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    color: white;
}

.event-tag-master {
    background: linear-gradient(135deg, #dc2626 0%, #f87171 100%);
    color: white;
}

.event-date {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.event-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.event-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.event-meta {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.event-duration,
.event-spots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.event-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Dark mode adjustments */
[data-theme="dark"] .events-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

[data-theme="dark"] .event-card {
    background: rgba(45, 45, 45, 0.9);
    border-color: rgba(237, 192, 31, 0.3);
}

[data-theme="dark"] .event-card h3 {
    color: #ffffff;
}

[data-theme="dark"] .event-card p,
[data-theme="dark"] .event-date,
[data-theme="dark"] .event-duration,
[data-theme="dark"] .event-spots {
    color: #b0b0b0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .events-modern {
        padding: 4rem 1.5rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-card {
        padding: 1.5rem;
    }

    .event-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================
   Cart Hover Panel
   ========================================= */
.cart-hover-panel {
    position: fixed;
    width: 380px;
    max-height: 500px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(237, 192, 31, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    overflow: hidden;
}

.cart-hover-panel.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cart-hover-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-hover-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

.cart-hover-header span {
    font-size: 0.85rem;
    color: #666;
}

.cart-hover-items {
    max-height: 320px;
    overflow-y: auto;
    padding: 0.5rem;
}

.cart-hover-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: background 0.2s ease;
    position: relative;
}

.cart-hover-item:hover {
    background: rgba(237, 192, 31, 0.05);
}

.cart-hover-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
}

.cart-hover-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-hover-item-info {
    flex: 1;
    min-width: 0;
}

.cart-hover-item-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: #1a1a1a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-hover-item-price {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.cart-hover-item-remove {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.cart-hover-item-remove:hover {
    background: #dc2626;
    color: white;
    transform: scale(1.1);
}

.cart-hover-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.5);
}

.cart-hover-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cart-hover-total span {
    color: #666;
}

.cart-hover-total strong {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.25rem;
}

.cart-hover-view-btn {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
}

.cart-hover-empty {
    padding: 3rem 2rem;
    text-align: center;
    color: #999;
}

.cart-hover-empty svg {
    margin: 0 auto 1rem;
    opacity: 0.3;
}

.cart-hover-empty p {
    margin: 0;
    color: #666;
}

/* Dark mode support */
[data-theme="dark"] .cart-hover-panel {
    background: rgba(26, 26, 26, 0.98);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(237, 192, 31, 0.2);
}

[data-theme="dark"] .cart-hover-header h3,
[data-theme="dark"] .cart-hover-item-info h4,
[data-theme="dark"] .cart-hover-total strong {
    color: #ffffff;
}

[data-theme="dark"] .cart-hover-header span,
[data-theme="dark"] .cart-hover-item-price,
[data-theme="dark"] .cart-hover-total span {
    color: #b0b0b0;
}

[data-theme="dark"] .cart-hover-item:hover {
    background: rgba(237, 192, 31, 0.1);
}

[data-theme="dark"] .cart-hover-header,
[data-theme="dark"] .cart-hover-footer {
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .cart-hover-footer {
    background: rgba(45, 45, 45, 0.5);
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .cart-hover-panel {
        width: calc(100vw - 2rem);
        right: 1rem !important;
    }
}

/* =========================================
   Typing Animation Cursor
   ========================================= */
.typing-cursor {
    color: var(--sage-dark);
    font-weight: 300;
    animation: blink 1s infinite;
    margin-left: 4px;
}

@keyframes blink {

    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

/* Hide cursor on mobile for cleaner look */
@media (max-width: 768px) {
    .typing-cursor {
        display: none;
    }
}

/* =========================================
   Hero Media - Remove White Background
   ========================================= */
.hero-media {
    background: transparent !important;
}

.hero-media img {
    background: transparent !important;
    mix-blend-mode: multiply;
}
