/* ====================================================================
   KIRSTEN CAFÉ — Next-Gen Premium Design System
   ==================================================================== */

/* ---- CSS Variables / Design Tokens ---- */
:root {
    /* Primary Coffee Palette */
    --coffee-900: #1a0e0a;
    --coffee-800: #2b1a11;
    --coffee-700: #3d2518;
    --coffee-600: #5a3825;
    --coffee-500: #7a4f33;
    --coffee-400: #9b6844;
    --coffee-300: #c08b5c;
    --coffee-200: #d4a574;
    --coffee-100: #e8c9a0;
    --coffee-50: #f5e6d0;

    /* Accent — Gold / Amber */
    --gold-500: #c9952d;
    --gold-400: #d4a740;
    --gold-300: #e0bc5f;
    --gold-200: #ecce85;
    --gold-100: #f5e2b0;

    /* Neutral */
    --white: #ffffff;
    --gray-50: #faf9f7;
    --gray-100: #f3f1ee;
    --gray-200: #e8e4de;
    --gray-300: #d4cec4;
    --gray-400: #a89f93;
    --gray-500: #7a7168;
    --gray-600: #5a524a;
    --gray-700: #3d3832;
    --gray-800: #272320;
    --gray-900: #1a1715;

    /* Semantic */
    --bg-primary: var(--gray-50);
    --bg-secondary: var(--white);
    --text-primary: var(--coffee-800);
    --text-secondary: var(--gray-500);
    --accent: var(--gold-500);
    --accent-light: var(--gold-300);

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 10vh, 140px);
    --container-max: 1280px;
    --container-padding: clamp(20px, 4vw, 40px);

    /* Borders & Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26,14,10,0.06);
    --shadow-md: 0 8px 30px rgba(26,14,10,0.08);
    --shadow-lg: 0 20px 60px rgba(26,14,10,0.12);
    --shadow-xl: 0 30px 80px rgba(26,14,10,0.18);

    /* Transition */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Semantic aliases for store page */
    --color-dark: var(--coffee-900);
    --color-brown-deep: var(--coffee-800);
    --color-gold: var(--gold-500);
    --color-gold-dark: var(--gold-400);
    --color-cream: var(--gray-50);
    --color-text: var(--text-primary);
    --color-text-light: var(--text-secondary);
    --color-border: var(--gray-200);
}

/* ---- Base Reset ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease);
}

ul { list-style: none; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ---- Preloader ---- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--coffee-900);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.coffee-cup {
    position: relative;
    display: inline-block;
}

.cup-body {
    width: 48px;
    height: 40px;
    background: var(--gold-500);
    border-radius: 0 0 20px 20px;
    position: relative;
}

.cup-body::after {
    content: '';
    position: absolute;
    right: -14px;
    top: 5px;
    width: 14px;
    height: 20px;
    border: 3px solid var(--gold-500);
    border-left: none;
    border-radius: 0 10px 10px 0;
}

.steam {
    position: absolute;
    width: 3px;
    height: 20px;
    background: rgba(255,255,255,0.4);
    border-radius: 50px;
    bottom: 100%;
    animation: steam 1.5s infinite;
}

.steam1 { left: 10px; animation-delay: 0s; }
.steam2 { left: 22px; animation-delay: 0.3s; }
.steam3 { left: 34px; animation-delay: 0.6s; }

@keyframes steam {
    0% { transform: translateY(0) scaleX(1); opacity: 0; }
    15% { opacity: 0.6; }
    50% { transform: translateY(-30px) scaleX(1.5); opacity: 0.3; }
    100% { transform: translateY(-60px) scaleX(2); opacity: 0; }
}

.loader-text {
    color: var(--gold-300);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-top: 24px;
    letter-spacing: 2px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ======================================================================
   NAVIGATION
   ====================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(26,14,10,0.92);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    z-index: 1001;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s var(--ease);
    mix-blend-mode: screen;
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 100px;
    transition: all 0.3s var(--ease);
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--gold-400);
    border-radius: 50%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-shop {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--gold-500);
    color: #fff;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s var(--ease);
}

.btn-shop:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,149,45,0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-bar {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.menu-toggle.active .hamburger-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active .hamburger-bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .hamburger-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ======================================================================
   HERO
   ====================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroZoom 25s ease infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1) translate(0, 0); }
    100% { transform: scale(1.2) translate(-20px, -10px); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26,14,10,0.7) 0%,
        rgba(26,14,10,0.5) 40%,
        rgba(26,14,10,0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    color: var(--gold-300);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-title {
    font-family: var(--font-heading);
    color: #fff;
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 0.95;
    font-weight: 400;
    margin-bottom: 16px;
}

.hero-title .title-line {
    display: block;
}

.hero-title .accent {
    color: var(--gold-400);
    font-style: italic;
    font-weight: 500;
}

.hero-tagline {
    color: var(--gold-200);
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-style: italic;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s var(--ease);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-500);
    color: #fff;
    border-color: var(--gold-500);
}

.btn-primary:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201,149,45,0.4);
}

.btn-primary i {
    transition: transform 0.3s var(--ease);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 12px 28px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 44px;
    font-size: 1rem;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}

.scroll-indicator:hover {
    color: var(--gold-400);
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: currentColor;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-400);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ======================================================================
   SECTION COMMON
   ====================================================================== */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 16px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '—';
    margin: 0 12px;
    color: var(--gray-300);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-primary);
}

.section-title .accent {
    color: var(--gold-500);
    font-style: italic;
}

.section-title .accent-light {
    color: var(--gold-300);
    font-style: italic;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--gray-300);
}

.divider-icon {
    font-size: 1.2rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.7;
}

.section-desc.light {
    color: rgba(255,255,255,0.7);
}

.section-header.light .section-title {
    color: #fff;
}

.section-header.light .section-tag {
    color: var(--gold-300);
}

.section-header.light .section-tag::before,
.section-header.light .section-tag::after {
    color: rgba(255,255,255,0.2);
}

/* ======================================================================
   ORIGINS SECTION
   ====================================================================== */
.origins {
    background: var(--white);
}

.origins-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(26,14,10,0.85);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-year {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-400);
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

.origins-subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--coffee-700);
    margin-bottom: 20px;
    font-weight: 500;
}

.origins-content p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.origins-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--coffee-600);
    padding: 24px 0 24px 24px;
    border-left: 4px solid var(--gold-500);
    margin: 28px 0;
    position: relative;
}

.quote-icon {
    color: var(--gold-400);
    font-size: 1.2rem;
    margin-right: 8px;
    opacity: 0.6;
}

.origins-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease);
}

.feature-item:hover {
    background: var(--coffee-50);
    transform: translateX(8px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-500);
    color: #fff;
    border-radius: 12px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--coffee-700);
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Origins Photo Gallery Strip */
.origins-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 60px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ======================================================================
   PROCESS STRIP
   ====================================================================== */
.process-strip {
    background: var(--coffee-800);
    padding: 60px 0;
    overflow: hidden;
}

.process-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.process-item {
    text-align: center;
    padding: 24px;
    flex: 1;
    min-width: 0;
}

.process-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,149,45,0.15);
    border: 2px solid rgba(201,149,45,0.3);
    border-radius: 16px;
    margin: 0 auto 14px;
    font-size: 1.3rem;
    color: var(--gold-400);
    transition: all 0.4s var(--ease);
}

.process-item:hover .process-icon {
    background: var(--gold-500);
    color: #fff;
    border-color: var(--gold-500);
    transform: scale(1.1) rotate(5deg);
}

.process-item h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.process-item p {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    line-height: 1.4;
}

.process-connector {
    color: rgba(201,149,45,0.3);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ======================================================================
   PRODUCTS SECTION
   ====================================================================== */
.products {
    background: var(--bg-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s var(--ease);
    border: 1px solid var(--gray-200);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-200);
}

.product-card.featured {
    border-color: var(--gold-400);
    box-shadow: var(--shadow-md), 0 0 0 1px var(--gold-400);
}

.product-image {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--coffee-50) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    overflow: hidden;
}

.product-image.accessories-bg {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
}

.product-image img {
    max-height: 200px;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s var(--ease);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.product-card:hover .product-image img {
    transform: scale(1.08) rotate(-2deg);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: var(--coffee-700);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
}

.product-badge.premium { background: var(--gold-500); }
.product-badge.special { background: #b44a2d; }
.product-badge.travel { background: #2d7bb4; }
.product-badge.institutional { background: var(--coffee-600); }
.product-badge.accessory { background: var(--gray-600); }

.featured-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.95);
    color: var(--gold-500);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-info {
    padding: 24px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--coffee-800);
    margin-bottom: 8px;
}

.product-process {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.product-tags .tag {
    padding: 4px 12px;
    background: var(--gray-100);
    color: var(--text-secondary);
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 100px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--coffee-800);
}

.product-price small {
    font-size: 0.65rem;
    color: var(--text-secondary);
    font-family: var(--font-body);
    letter-spacing: 1px;
    vertical-align: super;
}

.btn-product {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-500);
    color: #fff;
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.3s var(--ease);
}

.btn-product:hover {
    background: var(--coffee-700);
    transform: scale(1.1);
}

.products-cta {
    text-align: center;
    margin-top: 50px;
}

/* ======================================================================
   SERVICES SECTION
   ====================================================================== */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s var(--ease);
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-200);
}

.service-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,14,10,0) 0%, rgba(26,14,10,0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

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

.service-details {
    color: #fff;
}

.service-details h4 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 10px;
}

.service-details ul {
    font-size: 0.9rem;
}

.service-details li {
    padding: 3px 0;
    opacity: 0.85;
}

.service-details li::before {
    content: '→ ';
    color: var(--gold-400);
}

.service-content {
    padding: 30px;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-500);
    color: #fff;
    border-radius: 14px;
    font-size: 1.2rem;
    margin-bottom: 16px;
    transition: all 0.3s var(--ease);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--coffee-700);
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tags span {
    padding: 5px 14px;
    background: var(--white);
    color: var(--text-secondary);
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 100px;
    border: 1px solid var(--gray-200);
}

/* ======================================================================
   TOURS SECTION
   ====================================================================== */
.tours {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.tours-bg {
    position: absolute;
    inset: 0;
}

.tours-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tours-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,14,10,0.92) 0%,
        rgba(43,26,17,0.88) 50%,
        rgba(26,14,10,0.92) 100%
    );
}

.tours .container {
    position: relative;
    z-index: 2;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tour-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.5s var(--ease);
}

.tour-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold-400);
    transform: translateY(-6px);
}

.tour-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.tour-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,149,45,0.2);
    border: 1px solid rgba(201,149,45,0.3);
    border-radius: 12px;
    color: var(--gold-400);
    font-size: 1.1rem;
}

.tour-location {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-400);
}

.tour-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
}

.tour-tagline {
    color: rgba(255,255,255,0.6);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.tour-includes {
    margin-bottom: 28px;
}

.tour-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
}

.tour-includes i {
    color: var(--gold-400);
    font-size: 0.75rem;
}

/* ======================================================================
   AWARDS SECTION
   ====================================================================== */
.awards {
    background: var(--bg-primary);
}

.awards-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.awards-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold-400), transparent);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 24px 0;
    position: relative;
    transition: all 0.3s var(--ease);
}

.timeline-item:hover {
    transform: translateX(8px);
}

.timeline-year {
    width: 70px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-500);
    flex-shrink: 0;
    text-align: right;
    padding-top: 2px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 74px;
    top: 32px;
    width: 12px;
    height: 12px;
    background: var(--gold-500);
    border: 3px solid var(--bg-primary);
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    padding-left: 20px;
    flex: 1;
}

.timeline-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--coffee-700);
    margin-bottom: 4px;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ======================================================================
   LOCATIONS SECTION
   ====================================================================== */
.locations {
    background: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.locations-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-primary);
    margin: 12px 0 16px;
}

.locations-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 28px;
}

.locations-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.3s var(--ease);
}

.locations-list li:hover {
    padding-left: 8px;
    color: var(--gold-500);
}

.locations-list li i {
    color: var(--gold-500);
    font-size: 0.9rem;
}

.locations-direct {
    margin: 28px 0;
    font-size: 1rem;
    color: var(--coffee-700);
}

.map-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--radius-lg);
}

/* ======================================================================
   CONTACT SECTION
   ====================================================================== */
.contact {
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background: var(--coffee-800);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    color: #fff;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,149,45,0.2);
    border-radius: 12px;
    color: var(--gold-400);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-300);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.info-item a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--gold-400);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.3s var(--ease);
}

.social-link.whatsapp { background: #25d366; }
.social-link.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.facebook { background: #1877f2; }

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--coffee-800);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px 10px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--gray-50);
    transition: all 0.3s var(--ease);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 16px;
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: all 0.3s var(--ease);
    pointer-events: none;
    background: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201,149,45,0.1);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 6px;
    font-size: 0.7rem;
    color: var(--gold-500);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 18px;
    border: none;
}

/* ======================================================================
   FOOTER
   ====================================================================== */
.footer {
    background: var(--coffee-900);
    color: rgba(255,255,255,0.7);
    position: relative;
    padding-top: 80px;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    color: var(--bg-primary);
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
    mix-blend-mode: screen;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s var(--ease);
}

.footer-socials a:hover {
    background: var(--gold-500);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    padding: 6px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s var(--ease);
}

.footer-links a:hover {
    color: var(--gold-400);
    padding-left: 8px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold-500);
    width: 16px;
    text-align: center;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
}

.footer-contact a:hover {
    color: var(--gold-400);
}

.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-credits {
    font-style: italic;
}

/* ======================================================================
   WHATSAPP FLOAT
   ====================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
    transition: all 0.3s var(--ease);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 10px 35px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: var(--coffee-800);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--coffee-800);
}

/* ======================================================================
   BACK TO TOP
   ====================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 44px;
    height: 44px;
    background: var(--coffee-700);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease);
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-500);
    transform: translateY(-4px);
}

/* ======================================================================
   ANIMATIONS (Scroll Reveal)
   ====================================================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-animate="fade-right"] {
    transform: translateX(-60px);
}

[data-animate="fade-left"] {
    transform: translateX(60px);
}

[data-animate="fade-down"] {
    transform: translateY(-40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* ======================================================================
   RESPONSIVE
   ====================================================================== */
@media (max-width: 1024px) {
    .origins-grid,
    .services-grid,
    .tours-grid,
    .locations-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .awards-timeline::before {
        left: 60px;
    }

    .timeline-item::after {
        left: 54px;
    }

    .timeline-year {
        width: 50px;
    }

    .origins-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26,14,10,0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s var(--ease);
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-link {
        font-size: 1.3rem;
        padding: 14px 32px;
    }

    .menu-toggle {
        display: flex;
    }

    .btn-shop span {
        display: none;
    }

    .btn-shop {
        padding: 10px;
        border-radius: 12px;
    }

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

    .process-items {
        flex-wrap: wrap;
        gap: 10px;
    }

    .process-connector {
        display: none;
    }

    .process-item {
        flex: 0 0 calc(33.33% - 10px);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .origins-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

    .tour-card {
        padding: 28px;
    }

    .awards-timeline::before {
        left: 40px;
    }

    .timeline-item::after {
        left: 34px;
    }

    .timeline-year {
        width: 30px;
        font-size: 1.1rem;
    }

    .timeline-content {
        padding-left: 14px;
    }

    .hero-scroll {
        display: none;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .back-to-top {
        right: 80px;
        bottom: 20px;
    }
}

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

    .section-title {
        font-size: 2rem;
    }

    .process-item {
        flex: 0 0 calc(50% - 10px);
    }
}

/* ======================================================================
   PRELOADER
   ====================================================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--coffee-900);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
    color: var(--gold-400);
}

.preloader-inner .coffee-cup {
    position: relative;
    display: inline-block;
    margin: 0 auto 30px;
}

.preloader-inner .cup-body {
    width: 48px;
    height: 40px;
    background: var(--gold-500);
    border-radius: 0 0 20px 20px;
    position: relative;
}

.preloader-inner .cup-body::after {
    content: '';
    position: absolute;
    right: -14px;
    top: 5px;
    width: 14px;
    height: 20px;
    border: 3px solid var(--gold-500);
    border-left: none;
    border-radius: 0 10px 10px 0;
}

.preloader-inner .steam {
    position: absolute;
    width: 3px;
    height: 20px;
    background: rgba(255,255,255,0.4);
    border-radius: 50px;
    bottom: 100%;
    animation: steam 1.5s infinite;
}

.preloader-inner .steam1 { left: 10px; animation-delay: 0s; }
.preloader-inner .steam2 { left: 22px; animation-delay: 0.3s; }
.preloader-inner .steam3 { left: 34px; animation-delay: 0.6s; }

@keyframes steam {
    0% { transform: translateY(0) scaleX(1); opacity: 0; }
    15% { opacity: 0.6; }
    50% { transform: translateY(-30px) scaleX(1.5); opacity: 0.3; }
    100% { transform: translateY(-60px) scaleX(2); opacity: 0; }
}

.preloader-inner span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 2px;
    animation: pulse 1.5s infinite;
    display: block;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ======================================================================
   WOOCOMMERCE — STORE HERO
   ====================================================================== */
.wc-main {
    padding-top: 80px;
}

.wc-hero {
    background: linear-gradient(135deg, var(--coffee-900) 0%, var(--coffee-800) 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.wc-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,149,45,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.wc-hero-content {
    position: relative;
    z-index: 1;
}

.wc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.wc-breadcrumb span {
    color: rgba(255,255,255,0.6);
}

.wc-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.wc-breadcrumb a:hover {
    color: var(--gold-400);
}

.wc-breadcrumb i {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.3);
}

.wc-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.wc-hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    max-width: 550px;
}

/* ======================================================================
   WOOCOMMERCE — CONTENT AREA
   ====================================================================== */
.wc-content {
    padding: 3rem 0 4rem;
    background: var(--bg-primary);
}

.wc-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

/* Product Grid */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
    gap: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce ul.products li.product {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease);
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: 260px !important;
    object-fit: contain !important;
    padding: 20px;
    background: linear-gradient(135deg, #faf5ef 0%, #f0e6d6 100%);
    margin: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-heading) !important;
    font-size: 1.15rem !important;
    color: var(--coffee-800) !important;
    padding: 12px 16px 0 !important;
    font-weight: 600;
}

.woocommerce ul.products li.product .price {
    color: var(--gold-600) !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    padding: 4px 16px 12px !important;
}

.woocommerce ul.products li.product .price del {
    opacity: 0.4;
    font-size: 0.85em;
}

.woocommerce ul.products li.product .button {
    display: block !important;
    width: calc(100% - 32px) !important;
    margin: 0 16px 16px !important;
    padding: 12px !important;
    background: var(--gold-500) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    cursor: pointer !important;
    transition: all 0.3s var(--ease) !important;
}

.woocommerce ul.products li.product .button:hover {
    background: var(--gold-600) !important;
    box-shadow: 0 6px 20px rgba(201,149,45,0.35) !important;
}

/* Sale badge */
.woocommerce span.onsale {
    background: var(--gold-500) !important;
    border-radius: var(--radius-sm) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    min-width: auto !important;
    min-height: auto !important;
    padding: 6px 12px !important;
    line-height: 1 !important;
}

/* Star ratings */
.woocommerce .star-rating {
    color: var(--gold-500) !important;
}

/* ======================================================================
   WOOCOMMERCE — SINGLE PRODUCT
   ====================================================================== */
.woocommerce div.product div.images {
    width: 48% !important;
}

.woocommerce div.product div.summary {
    width: 48% !important;
}

.woocommerce div.product .product_title {
    font-family: var(--font-heading) !important;
    font-size: 2rem !important;
    font-weight: 500 !important;
    color: var(--coffee-800);
}

.woocommerce div.product p.price {
    color: var(--gold-600) !important;
    font-family: var(--font-heading) !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
}

.woocommerce div.product form.cart .button {
    background: var(--gold-500) !important;
    color: #fff !important;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    padding: 14px 32px !important;
    border: none !important;
    transition: all 0.3s var(--ease) !important;
}

.woocommerce div.product form.cart .button:hover {
    background: var(--gold-600) !important;
    box-shadow: 0 6px 20px rgba(201,149,45,0.35) !important;
}

.woocommerce div.product form.cart .quantity input {
    border: 2px solid var(--gray-200) !important;
    border-radius: var(--radius-sm) !important;
    padding: 10px !important;
    font-size: 1rem !important;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    border-bottom: 2px solid var(--gray-200) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--gold-500) !important;
    border-bottom: 2px solid var(--gold-500) !important;
}

/* ======================================================================
   WOOCOMMERCE — CART
   ====================================================================== */
.woocommerce-cart table.cart td.actions .button {
    background: var(--gold-500) !important;
    color: #fff !important;
    border-radius: var(--radius-sm) !important;
    border: none !important;
    transition: all 0.3s var(--ease) !important;
}

.woocommerce-cart table.cart td.actions .button:hover {
    background: var(--gold-600) !important;
}

.woocommerce .cart-collaterals .cart_totals .checkout-button {
    background: var(--gold-500) !important;
    color: #fff !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    transition: all 0.3s var(--ease) !important;
}

.woocommerce .cart-collaterals .cart_totals .checkout-button:hover {
    background: var(--gold-600) !important;
}

/* ======================================================================
   WOOCOMMERCE — CHECKOUT
   ====================================================================== */
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    border: 2px solid var(--gray-200) !important;
    border-radius: var(--radius-sm) !important;
    padding: 12px 16px !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    transition: border-color 0.3s !important;
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
    border-color: var(--gold-500) !important;
    box-shadow: 0 0 0 4px rgba(201,149,45,0.1) !important;
}

.woocommerce-checkout #place_order {
    background: var(--gold-500) !important;
    color: #fff !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    padding: 16px 32px !important;
    border: none !important;
    transition: all 0.3s var(--ease) !important;
}

.woocommerce-checkout #place_order:hover {
    background: var(--gold-600) !important;
    box-shadow: 0 6px 20px rgba(201,149,45,0.35) !important;
}

/* ======================================================================
   WOOCOMMERCE — TRUST BANNER
   ====================================================================== */
.wc-trust {
    background: var(--coffee-900);
    padding: 3rem 0;
}

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

.wc-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.wc-trust .trust-item i {
    font-size: 1.8rem;
    color: var(--gold-400);
    flex-shrink: 0;
}

.wc-trust .trust-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.wc-trust .trust-item p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* ======================================================================
   WORDPRESS NAV MENU OVERRIDES
   ====================================================================== */
/* WordPress outputs <ul class="menu"><li><a>... — hide the list structure */
.nav-menu > ul {
    display: contents;
}

.nav-menu > ul > li {
    list-style: none;
}

.nav-menu > ul > li > a {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.75);
    transition: color 0.3s var(--ease);
    text-decoration: none;
    padding: 8px 4px;
}

.nav-menu > ul > li > a:hover {
    color: var(--gold-400);
}

.nav-menu > ul > li.current-menu-item > a,
.nav-menu > ul > li.current_page_item > a {
    color: #fff;
}

/* ======================================================================
   WOOCOMMERCE — RESPONSIVE
   ====================================================================== */
@media (max-width: 1024px) {
    .wc-trust .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wc-hero-title {
        font-size: 2rem;
    }

    .wc-wrapper {
        padding: 20px;
    }

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

    .woocommerce ul.products {
        grid-template-columns: 1fr 1fr !important;
    }

    .woocommerce div.product div.images,
    .woocommerce div.product div.summary {
        width: 100% !important;
        float: none !important;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }
}
