:root {
    --yellow: #FFDE01;
    --yellow-dark: #E6C801;
    --yellow-glow: rgba(255,222,1,0.25);
    --text: #4B4B4B;
    --text-light: rgba(255,255,255,0.85);
    --text-muted: #888;
    --black: #000000;
    --white: #ffffff;
    --cream: #FFF9E6;
    --cream-dark: #F5EDD6;
    --green: #2E7D32;
    --orange: #E65100;
    --brand-red: #B01E2A;
    --bg-light: #fafafa;

    --font-body: 'DM Sans', sans-serif;
    --font-heading: 'DM Serif Text', serif;

    --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px rgba(255,222,1,0.2);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s ease;
}

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

html { scroll-behavior: smooth; }

/* ============ PRELOADER ============ */
.preloader {
    position: fixed; inset: 0; z-index: 20000;
    background: linear-gradient(135deg, #ffffff 0%, #f4f4f4 100%);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo { text-align: center; }
.preloader-img { height: 80px; margin: 0 auto 1.5rem; animation: preloaderPulse 1.2s ease-in-out infinite; }
.preloader-bar { width: 120px; height: 3px; background: rgba(0,0,0,0.08); border-radius: 3px; overflow: hidden; margin: 0 auto 1rem; }
.preloader-bar span {
    display: block; height: 100%; width: 0%;
    background: var(--yellow); border-radius: 3px;
    animation: preloaderLoad 1.6s ease forwards;
}
.preloader-logo p { color: #555; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; font-family: var(--font-body); }
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
}
@keyframes preloaderLoad {
    0% { width: 0; }
    60% { width: 70%; }
    100% { width: 100%; }
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65em;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, .h1 { font-family: var(--font-heading); font-size: 42px; font-weight: 400; line-height: 1.1em; color: var(--black); letter-spacing: -0.02em; }
h2, .h2 { font-family: var(--font-heading); font-size: 34px; font-weight: 400; line-height: 1.1em; color: var(--black); letter-spacing: -0.01em; }
h3, .h3 { font-family: var(--font-heading); font-size: 26px; font-weight: 400; line-height: 1.2em; color: var(--black); }
h4 { font-family: var(--font-body); font-size: 22px; font-weight: 500; line-height: 1.4em; color: var(--black); }

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section[id] { scroll-margin-top: 80px; }

/* ============ NAVBAR ============ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--yellow); transition: var(--transition);
    padding: 1.25rem 0;
}
.navbar.scrolled {
    background: var(--yellow);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}
.navbar-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 60px; position: relative;
}
.navbar-logo { display: flex; align-items: center; }
.navbar-mobile-logo { display: none; align-items: center; }
.navbar-mobile-logo img { height: 36px; width: auto; object-fit: contain; }
.nav-logo-mid { margin: 0 0.25rem; align-self: center; opacity: 0.95; transition: var(--transition); }
.nav-logo-mid:hover { opacity: 1; }
.logo-img { height: 48px; width: auto; object-fit: contain; transition: var(--transition); }
.navbar.scrolled .logo-img { height: 38px; }
.navbar-menu { display: flex; gap: 0.5rem; }
.nav-link {
    padding: 0.5rem 1.75rem; font-size: 12px; font-weight: 500;
    color: var(--black); text-transform: uppercase; letter-spacing: 1.5px;
    transition: var(--transition); position: relative;
}
.navbar.scrolled .nav-link { color: var(--text); }
.nav-link:hover, .nav-link.active { color: #332b00; }
.nav-link.active::after {
    content: ''; position: absolute; bottom: -2px; left: 50%;
    transform: translateX(-50%); width: 20px; height: 2px;
    background: #332b00; border-radius: 2px;
    transition: var(--transition);
}
.navbar-actions { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; }
.cart-toggle {
    position: relative; background: none; border: none;
    font-size: 1.125rem; color: var(--black); cursor: pointer;
    padding: 0.5rem; transition: var(--transition);
    touch-action: manipulation; user-select: none; -webkit-user-select: none;
}
.navbar.scrolled .cart-toggle { color: var(--text); }
.cart-toggle:hover { color: #332b00; transform: scale(1.1); }
.cart-count {
    position: absolute; top: -2px; right: -4px;
    background: var(--yellow); color: var(--black);
    font-size: 9px; font-weight: 700;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transform: scale(0); transition: var(--transition);
    box-shadow: 0 2px 6px rgba(255,222,1,0.4);
}
.cart-count.visible { transform: scale(1); }
.mobile-toggle {
    display: none; background: none; border: none;
    flex-direction: column; gap: 6px; cursor: pointer; padding: 0.5rem;
}
.mobile-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--black); transition: var(--transition);
    border-radius: 2px;
}
.navbar.scrolled .mobile-toggle span { background: var(--text); }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 340px; max-width: 85vw;
    height: 100vh; background: var(--white); z-index: 10001;
    display: flex; flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu.active { right: 0; }
.mobile-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    z-index: 10000; opacity: 0; visibility: hidden;
    transition: var(--transition); backdrop-filter: blur(4px);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu-header {
    padding: 1.25rem 1.5rem; display: flex;
    align-items: center; justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}
.mobile-close {
    background: none; border: none; font-size: 1.5rem;
    color: var(--text); cursor: pointer; transition: var(--transition);
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
}
.mobile-close:hover { color: var(--black); transform: rotate(90deg); }
.mobile-nav { flex: 1; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.25rem; overflow-y: auto; }
.mobile-link {
    padding: 1.05rem 0; font-size: 14px; font-weight: 500;
    color: var(--text); border-bottom: 1px solid #f5f5f5;
    text-transform: uppercase; letter-spacing: 1.5px;
    transition: var(--transition); touch-action: manipulation;
}
.mobile-link:hover { color: var(--yellow); padding-left: 8px; }
.mobile-social {
    padding: 1.5rem; display: flex; justify-content: center; gap: 0.75rem;
    border-top: 1px solid #f0f0f0;
}
.mobile-social a {
    width: 44px; height: 44px; border-radius: 50%;
    background: #f5f5f5; display: flex;
    align-items: center; justify-content: center;
    color: var(--text); transition: var(--transition);
}
.mobile-social a:hover { background: var(--yellow); color: var(--black); transform: translateY(-2px); }

/* ============ HERO FULLSCREEN ============ */
.hero-fullscreen {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-video-bg {
    position: absolute; inset: 0;
}
.hero-video-frame {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; pointer-events: none;
}
.hero-bg-img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.55) 100%);
}
.hero-fullscreen-content {
    position: relative; z-index: 2; text-align: center;
    padding: 2rem;
}
.hero-fullscreen-content h1 {
    font-size: clamp(2.6rem, 6.5vw, 5rem);
    color: var(--white);
    margin: 0 0 2.5rem;
    line-height: 1.15em;
    font-weight: 500;
    max-width: 24ch;
    letter-spacing: 0.02em;
    text-shadow: 0 3px 24px rgba(0,0,0,0.45);
    opacity: 0; transform: translateY(30px);
    animation: heroFadeIn 1s ease 0.3s forwards;
}
@keyframes heroFadeIn {
    to { opacity: 1; transform: translateY(0); }
}
.btn-hero-scroll {
    display: inline-flex; align-items: center; gap: 0.75rem;
    color: var(--white); font-size: 13px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1.5px;
    transition: var(--transition);
    opacity: 0; animation: heroFadeIn 1s ease 0.6s forwards;
}
.btn-hero-scroll i {
    width: 40px; height: 40px; border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 12px; transition: var(--transition);
}
.btn-hero-scroll:hover { color: var(--yellow); }
.btn-hero-scroll:hover i { border-color: var(--yellow); background: rgba(255,222,1,0.15); }

/* Slow drifting gradient aurora on overlay */
.hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(20,8,2,0.35) 50%, rgba(0,0,0,0.6) 100%);
}
.hero-overlay::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 30%, rgba(255,222,1,0.18) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 70%, rgba(255,160,60,0.14) 0%, transparent 55%);
    mix-blend-mode: screen;
    animation: heroAurora 16s ease-in-out infinite alternate;
}
@keyframes heroAurora {
    0%   { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.15); }
}

.hero-scroll-indicator {
    position: absolute; bottom: 2.5rem; left: 2.5rem;
    display: flex; align-items: center; gap: 1rem;
    color: rgba(255,255,255,0.5); font-size: 10px;
    text-transform: uppercase; letter-spacing: 3px; z-index: 2;
}
.scroll-line {
    width: 1px; height: 50px; background: rgba(255,255,255,0.2);
    position: relative; overflow: hidden;
}
.scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0;
    width: 100%; height: 100%; background: var(--yellow);
    animation: scrollDown 2.5s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { top: -100%; }
    50% { top: 0; }
    100% { top: 100%; }
}

/* ============ COFFEE-THEMED ANIMATIONS ============ */

/* Steam wisps */
.steam-container {
    position: absolute; bottom: 20%; left: 0; right: 0;
    height: 200px; pointer-events: none; z-index: 2;
}
.steam {
    position: absolute; bottom: 0;
    width: 3px; height: 0;
    background: linear-gradient(to top, rgba(255,255,255,0), rgba(255,255,255,0.5), rgba(255,255,255,0));
    border-radius: 50%;
    filter: blur(4px);
    animation: steamRise var(--d, 3.5s) ease-out infinite;
    animation-delay: var(--t, 0s);
}
@keyframes steamRise {
    0% { height: 0; opacity: 0; transform: translateX(0) scaleX(1); }
    15% { opacity: 0.9; }
    50% { height: 120px; opacity: 0.5; transform: translateX(var(--x, 10px)) scaleX(2); }
    100% { height: 230px; opacity: 0; transform: translateX(calc(var(--x, 10px) * 2)) scaleX(3.4); }
}

/* Coffee ring decorations */
.section-about::after,
.section-bio::after {
    content: ''; position: absolute; width: 200px; height: 200px;
    border-radius: 50%; border: 3px solid rgba(180,150,110,0.14);
    pointer-events: none; animation: ringFade 6s ease-in-out infinite;
}
.section-about::after { top: 5%; right: 3%; animation-delay: 0s; }
.section-bio::after { bottom: 8%; left: 4%; animation-delay: 2s; }
@keyframes ringFade {
    0%, 100% { opacity: 0; transform: scale(0.9) rotate(-10deg); }
    50% { opacity: 1; transform: scale(1.05) rotate(5deg); }
}

/* Pour drip divider */
.section-about::before {
    content: ''; position: absolute; top: 0; left: 50%;
    transform: translateX(-50%);
    width: 2px; height: 0;
    background: linear-gradient(to bottom, var(--yellow), transparent);
    animation: pourDrip 3s ease-in-out infinite;
    z-index: 5;
}
@keyframes pourDrip {
    0% { height: 0; opacity: 0; top: -10px; }
    30% { height: 40px; opacity: 0.7; }
    60% { height: 60px; opacity: 0.4; top: 10px; }
    100% { height: 0; opacity: 0; top: 70px; }
}

/* Coffee grain texture overlay on hero */
.section-shop::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(139,90,43,0.03) 1px, transparent 1px),
        radial-gradient(circle at 85% 30%, rgba(139,90,43,0.02) 1px, transparent 1px),
        radial-gradient(circle at 45% 80%, rgba(139,90,43,0.03) 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, rgba(139,90,43,0.02) 1px, transparent 1px);
    background-size: 180px 180px, 220px 220px, 200px 200px, 160px 160px;
    pointer-events: none; z-index: 0;
    animation: grainShift 20s linear infinite;
}
@keyframes grainShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(180px, 180px); }
}

/* ============ SECTION LABEL ============ */
.section-label {
    display: inline-block; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--text); margin-bottom: 1.25rem;
    position: relative; padding-left: 32px;
}
.section-label::before {
    content: ''; position: absolute; left: 0; top: 50%;
    transform: translateY(-50%); width: 22px; height: 2px;
    background: var(--yellow); border-radius: 2px;
}
.section-label-light { color: var(--text-light); }
.section-label-light::before { background: var(--yellow); }

/* ============ ABOUT ============ */
.section-about { padding: 140px 0; background: var(--white); position: relative; overflow: hidden; }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: center;
}
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p {
    font-size: 18px; line-height: 1.8em;
    color: var(--text); margin-bottom: 1rem;
}
.btn-discover {
    display: inline-flex; align-items: center; gap: 0.75rem;
    margin-top: 2rem; font-size: 13px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--text); transition: var(--transition);
    touch-action: manipulation; user-select: none; -webkit-user-select: none;
}
.btn-discover i {
    width: 40px; height: 40px; border: 1.5px solid var(--text);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 11px; transition: var(--transition);
}
.btn-discover:hover { color: var(--yellow-dark); }
.btn-discover:hover i {
    border-color: var(--yellow);
    background: var(--yellow); color: var(--black);
    transform: rotate(90deg);
}

/* Stats Row */
.stats-row {
    display: flex; gap: 1.5rem; margin: 1.5rem 0;
    flex-wrap: wrap;
}
.stat-box {
    flex: 1; min-width: 90px; text-align: center;
    padding: 1.25rem 0.5rem;
    border: 1px solid #eee; border-radius: 8px;
    background: rgba(255,222,1,0.04);
    transition: var(--transition);
}
.stat-box:hover { border-color: var(--yellow); box-shadow: var(--shadow-sm); }
.stat-number {
    font-family: var(--font-heading); font-size: 38px;
    font-weight: 400; color: var(--black); display: inline-block;
}
.stat-suffix { font-family: var(--font-heading); font-size: 24px; color: var(--yellow-dark); }
.stat-box p {
    font-size: 10px; text-transform: uppercase; letter-spacing: 1px;
    color: var(--text); margin-top: 0.5rem;
}
.about-image-box {
    border-radius: 8px; overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}
.about-image-box::after {
    content: ''; position: absolute; inset: 0;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
}
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* Parallax */
.parallax-box { position: relative; overflow: hidden; }
.parallax-box .about-img, .parallax-box img {
    transform: scale(1.12);
    will-change: transform;
}

/* ============ PRODUCTS SLIDESHOW ============ */
.section-products { padding: 120px 0; background: var(--white); }
.products-showcase {
    display: grid; grid-template-columns: 220px 1fr;
    gap: 0; min-height: 520px;
    border: 1px solid #f0f0f0; border-radius: 8px; overflow: hidden;
}
.products-side-nav {
    display: flex; flex-direction: column;
    background: #fafafa;
}
.product-nav-item {
    padding: 1.5rem 2rem; font-size: 13px; font-weight: 500;
    color: var(--text); background: none; border: none;
    border-right: 3px solid transparent;
    cursor: pointer; transition: var(--transition);
    text-align: left; font-family: var(--font-body);
    text-transform: uppercase; letter-spacing: 1px;
}
.product-nav-item:hover { color: var(--yellow-dark); background: rgba(255,222,1,0.05); }
.product-nav-item.active {
    color: var(--black); border-right-color: var(--yellow);
    font-weight: 700; background: var(--white);
}
.products-slides { position: relative; overflow: hidden; }
.product-slide {
    display: none; grid-template-columns: 1fr 1fr;
    gap: 0; height: 100%; animation: fadeSlide 0.6s ease;
}
.product-slide.active { display: grid; }
@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.product-slide-content {
    padding: 3.5rem; display: flex; flex-direction: column;
    justify-content: center;
}
.product-slide-content h3 {
    font-size: 30px; margin-bottom: 1rem;
}
.product-slide-content p {
    font-size: 16px; line-height: 1.8em;
    color: var(--text); margin-bottom: 1.5rem;
}
.product-slide-visual {
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem; color: rgba(255,255,255,0.3);
    position: relative; overflow: hidden;
}
.product-slide-visual::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}
.product-slide-visual i { position: relative; z-index: 2; }

/* ============ SHOP / PRODUCTS GRID ============ */
.section-shop { padding: 120px 0; background: var(--bg-light); position: relative; overflow: hidden; }
.section-header-center { text-align: center; margin-bottom: 3.5rem; }
.section-header-center h2 { margin-bottom: 0.75rem; }
.products-tabs {
    display: flex; justify-content: center; gap: 0.5rem;
    margin-bottom: 3.5rem; flex-wrap: wrap;
}
.product-tab {
    padding: 0.75rem 2rem; font-size: 12px; font-weight: 500;
    background: transparent; border: 1.5px solid #ddd;
    border-radius: 9999px; cursor: pointer;
    transition: var(--transition); color: var(--text);
    touch-action: manipulation; user-select: none; -webkit-user-select: none;
    font-family: var(--font-body); text-transform: uppercase;
    letter-spacing: 0.8px;
}
.product-tab:hover { border-color: var(--black); color: var(--black); }
.product-tab.active {
    background: var(--black); color: var(--white); border-color: var(--black);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.products-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.product-card {
    background: var(--white); border-radius: 12px;
    border: 1px solid #f0f0f0; overflow: hidden;
    transition: var(--transition); display: flex; flex-direction: column;
}
.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--yellow);
}
.product-card-image {
    position: relative; overflow: hidden;
    width: 100%; padding-top: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: rgba(255,255,255,0.4);
}
.product-card-image::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.product-card-image .product-thumb {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}
.product-card:hover .product-thumb {
    transform: scale(1.08);
}
.product-card-image i {
    position: absolute; bottom: 10px; right: 10px;
    font-size: 1.5rem; opacity: 0.5; z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
    transition: var(--transition);
}
.product-card:hover .product-card-image i {
    transform: scale(1.2);
    color: var(--yellow);
    text-shadow: 0 0 20px rgba(255,222,1,0.5);
}
@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
.product-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-card-badge {
    display: inline-block; padding: 0.25rem 0.75rem;
    background: #f5f5f5; color: var(--text);
    font-size: 10px; font-weight: 700; border-radius: 4px;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem;
    width: fit-content;
}
.badge-green { background: rgba(46,125,50,0.1); color: var(--green); }
.badge-brown { background: rgba(93,64,55,0.1); color: #5D4037; }
.badge-orange { background: rgba(230,81,0,0.1); color: var(--orange); }
.product-card-title {
    font-family: var(--font-heading); font-size: 19px;
    color: var(--black); margin-bottom: 0.5rem;
}
.product-card-desc {
    font-size: 13px; color: var(--text-muted); line-height: 1.7;
    margin-bottom: 1rem; flex: 1;
}
.product-card-footer {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.25rem;
}
.product-price {
    font-family: var(--font-heading); font-size: 24px;
    font-weight: 400; color: var(--black);
}
.product-price small { font-size: 11px; color: var(--text-muted); }
.product-qty-row { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn {
    width: 30px; height: 30px; border: 1.5px solid #eee;
    border-radius: 4px; background: var(--white);
    font-size: 14px; cursor: pointer; touch-action: manipulation;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); color: var(--text);
}
.qty-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.qty-val { width: 28px; text-align: center; font-weight: 600; font-size: 13px; }
.btn-add-cart {
    width: 100%; padding: 0.75rem; font-size: 11px; font-weight: 700;
    background: var(--black); color: var(--white); border: none;
    border-radius: 6px; cursor: pointer; transition: var(--transition);
    font-family: var(--font-body); text-transform: uppercase;
    letter-spacing: 1.2px; position: relative; overflow: hidden;
    touch-action: manipulation; user-select: none; -webkit-user-select: none;
}
.btn-add-cart::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,222,1,0.3) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.btn-add-cart:hover::before { transform: translateX(100%); }
.btn-add-cart:hover {
    background: var(--yellow); color: var(--black);
    box-shadow: 0 4px 15px rgba(255,222,1,0.3);
}
.btn-add-cart i { margin-right: 0.5rem; }
a.btn-ask {
    display: block; width: 100%; height: auto;
    text-align: center; text-decoration: none; line-height: normal;
}
a.btn-ask.btn-add-cart { background: var(--black); box-sizing: border-box; }

.horeca-bg { background: linear-gradient(135deg, #6D4C41 0%, #3E2723 100%); }
.bio-bg { background: linear-gradient(135deg, #43A047 0%, #1B5E20 100%); }
.casa-bg { background: linear-gradient(135deg, #795548 0%, #4E342E 100%); }
.bevande-bg { background: linear-gradient(135deg, #F57C00 0%, #BF360C 100%); }

/* ============ BIO ============ */
.section-bio {
    position: relative; padding: 140px 0;
    background: var(--white); overflow: hidden;
}
.bio-bg-decor {
    position: absolute; left: 0; top: 0; bottom: 0; width: 50%;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    opacity: 0.03;
}
.bio-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: center;
}
.bio-image-box {
    border-radius: 8px; overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}
.bio-image-box::after {
    content: ''; position: absolute; inset: 0;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
}
.bio-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.bio-content h2 { margin-bottom: 1.5rem; }
.bio-content p {
    font-size: 18px; line-height: 1.8em;
    color: var(--text); margin-bottom: 1rem;
}

/* ============ SUSTAINABILITY ============ */
.section-sustainability {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.sustainability-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.sustain-card {
    background: var(--white); padding: 2.5rem 1.75rem;
    border-radius: 12px; text-align: center;
    transition: var(--transition); border: 1px solid #f0f0f0;
    position: relative; overflow: hidden;
}
.sustain-icon {
    width: 72px; height: 72px; margin: 0 auto 1.5rem;
    background: rgba(255,222,1,0.08); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--yellow-dark); transition: var(--transition);
    position: relative;
}
.sustain-icon::after {
    content: ''; position: absolute; inset: -3px; border-radius: 50%;
    border: 2px solid var(--yellow); opacity: 0; transform: scale(1.3);
    transition: var(--transition);
}
.sustain-card:hover .sustain-icon {
    background: var(--yellow); color: var(--black);
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 4px 20px rgba(255,222,1,0.3);
}
.sustain-card:hover .sustain-icon::after {
    opacity: 1; transform: scale(1);
    animation: pulseRing 1s ease-out infinite;
}
@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}
.sustain-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--yellow); transform: scaleX(0);
    transition: var(--transition);
}
.sustain-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.sustain-card:hover::before { transform: scaleX(1); }
.sustain-card h3 { font-size: 19px; margin-bottom: 0.75rem; }
.sustain-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ============ CONTACT ============ */
.section-contact { background: #111; padding: 0; }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
}
.contact-info-side { position: relative; min-height: 550px; }
.contact-map-img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.85);
}
.contact-form-side {
    padding: 4.5rem; display: flex; flex-direction: column; justify-content: center;
}
.contact-title {
    font-size: 28px; color: var(--white); margin: 2rem 0 1.5rem;
}
.contact-address {
    margin-bottom: 1.5rem;
}
.contact-address p {
    font-size: 14px; line-height: 1.9; color: rgba(255,255,255,0.7);
}
.contact-form-dark input,
.contact-form-dark select,
.contact-form-dark textarea {
    width: 100%; padding: 0.875rem 1.25rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px; color: var(--white);
    font-family: var(--font-body); font-size: 14px;
    transition: var(--transition); margin-bottom: 1rem;
}
.contact-form-dark input::placeholder,
.contact-form-dark textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-form-dark input:focus,
.contact-form-dark select:focus,
.contact-form-dark textarea:focus {
    outline: none; border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255,222,1,0.1);
    background: rgba(255,255,255,0.08);
}
.contact-form-dark select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    color: rgba(255,255,255,0.35);
}
.contact-form-dark select option { background: #1a1a1a; color: var(--white); }
.contact-form-dark textarea { resize: vertical; min-height: 110px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkbox-dark {
    display: flex; align-items: center; gap: 0.75rem;
    color: rgba(255,255,255,0.5); font-size: 13px;
    margin-bottom: 1.5rem; cursor: pointer;
}
.checkbox-dark input { accent-color: var(--yellow); width: 18px; height: 18px; }
.btn-submit {
    display: inline-block; padding: 1rem 2.5rem;
    background: var(--yellow); color: var(--black);
    border: none; border-radius: 4px; font-size: 12px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    cursor: pointer; transition: var(--transition);
    font-family: var(--font-body);
}
.btn-submit:hover {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}

/* ============ FOOTER ============ */
.footer { position: relative; }
.footer-hero-img {
    height: 420px; overflow: hidden; position: relative;
}
.footer-hero-bg {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.8);
}
.footer-hero-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255,222,1,0.3) 100%);
}
.footer-main {
    background: var(--yellow); padding: 4.5rem 0 2.5rem;
}
.footer-brand { text-align: center; margin-bottom: 3.5rem; }
.footer-logo-img { height: 65px; margin: 0 auto 1.5rem; object-fit: contain; }
.footer-tagline {
    font-family: var(--font-heading); font-size: 28px;
    color: var(--black); max-width: 650px; margin: 0 auto;
    line-height: 1.35em; font-style: italic;
}
.footer-info-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
    padding: 2.5rem 0; border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 2.5rem;
}
.footer-col h4 {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 1rem; color: var(--black);
}
.footer-col p { font-size: 14px; line-height: 1.8; color: rgba(0,0,0,0.65); }
.footer-sitemap {
    padding: 2rem 0; border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}
.footer-sitemap h4 {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 1.25rem; color: var(--black);
}
.footer-links-grid {
    display: flex; gap: 2rem; flex-wrap: wrap;
}
.footer-links-grid a {
    font-size: 14px; color: rgba(0,0,0,0.65);
    transition: var(--transition);
}
.footer-links-grid a:hover { color: var(--black); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
}
.footer-bottom-left {
    display: flex; align-items: center; gap: 1.5rem;
}
.footer-bottom-left a {
    font-size: 12px; color: rgba(0,0,0,0.5);
}
.footer-bottom-left a:hover { color: var(--black); }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(0,0,0,0.08); display: flex;
    align-items: center; justify-content: center;
    color: var(--black); font-size: 14px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--black); color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.footer-bottom-right p { font-size: 12px; color: rgba(0,0,0,0.4); }

/* ============ CART SIDEBAR ============ */
.cart-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    z-index: 9998; opacity: 0; visibility: hidden;
    transition: var(--transition); backdrop-filter: blur(4px);
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-sidebar {
    position: fixed; top: 0; right: -420px; width: 400px; max-width: 90vw;
    height: 100vh; background: var(--white); z-index: 9999;
    display: flex; flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cart-sidebar.active { right: 0; }
.cart-header {
    padding: 1.5rem; display: flex; align-items: center;
    justify-content: space-between; border-bottom: 1px solid #f0f0f0;
}
.cart-header h3 {
    font-family: var(--font-heading); font-size: 22px; color: var(--black);
}
.cart-header h3 i { margin-right: 0.5rem; color: var(--yellow); }
.cart-close {
    background: none; border: none; font-size: 1.25rem;
    color: #999; cursor: pointer; transition: var(--transition);
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}
.cart-close:hover { color: var(--black); background: #f5f5f5; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; height: 100%; color: #ccc;
}
.cart-empty i { font-size: 3rem; margin-bottom: 1rem; }
.cart-item {
    display: flex; gap: 1rem; padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
}
.cart-item-img {
    width: 60px; height: 60px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.125rem; flex-shrink: 0;
}
.cart-item-realimg {
    width: 50px; height: 50px; object-fit: contain;
    border-radius: 4px;
}
.cart-item-details { flex: 1; }
.cart-item-name { font-weight: 500; font-size: 13px; color: var(--black); }
.cart-item-price { font-size: 12px; color: var(--text-muted); margin-top: 0.25rem; }
.cart-item-actions { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.cart-item-qty-btn {
    width: 28px; height: 28px; border: 1px solid #eee;
    border-radius: 4px; background: var(--white);
    font-size: 12px; cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: var(--transition-fast);
}
.cart-item-qty-btn:hover { border-color: var(--yellow); }
.cart-item-qty { font-size: 13px; font-weight: 500; min-width: 24px; text-align: center; }
.cart-item-remove {
    background: none; border: none; color: #ccc;
    font-size: 12px; cursor: pointer; margin-left: auto;
    transition: var(--transition-fast);
}
.cart-item-remove:hover { color: #e53935; }
.cart-footer { padding: 1.5rem; border-top: 1px solid #f0f0f0; }
.cart-total-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1rem; font-size: 16px; font-weight: 500;
}
.cart-total { font-family: var(--font-heading); font-size: 22px; color: var(--black); }
.btn-checkout {
    display: block; width: 100%; text-align: center;
    padding: 0.875rem; background: var(--yellow); color: var(--black);
    border: none; border-radius: 4px; font-size: 12px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px;
    cursor: pointer; transition: var(--transition);
    font-family: var(--font-body); margin-bottom: 0.5rem;
}
.btn-checkout:hover {
    background: var(--black); color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn-clear-cart {
    display: block; width: 100%; text-align: center;
    padding: 0.625rem; background: transparent;
    border: 1px solid #eee; border-radius: 4px;
    font-size: 11px; color: var(--text-muted); cursor: pointer;
    transition: var(--transition); font-family: var(--font-body);
}
.btn-clear-cart:hover { border-color: #e53935; color: #e53935; }

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 48px; height: 48px;
    background: var(--black); border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--yellow); font-size: 1rem; cursor: pointer;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: var(--transition); box-shadow: var(--shadow-lg); z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover {
    background: var(--yellow); color: var(--black);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

/* ============ ANIMATIONS ============ */
.fade-in {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.loading {
    display: inline-block; width: 20px; height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: var(--yellow);
    border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ FORM MESSAGE ============ */
.form-message {
    padding: 1rem 1.25rem; border-radius: 4px; margin-bottom: 1rem;
    font-size: 14px;
}
.form-message.success { background: rgba(46,125,50,0.1); color: var(--green); border: 1px solid rgba(46,125,50,0.2); }

/* ============ BADGES ============ */
.badge-flag {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    padding: 0.35rem 0.75rem; font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; border-radius: 4px;
    color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.badge-hot { background: #e53935; animation: badgePulse 2s ease-in-out infinite; }
.badge-new { background: #2e7d32; animation: badgePulse 2.5s ease-in-out infinite 0.3s; }
@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* ============ TESTIMONIALS ============ */
.section-testimonials {
    padding: 120px 0; background: var(--cream); position: relative; overflow: hidden;
}
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.testimonial-card {
    background: var(--white); padding: 2.25rem; border-radius: 12px;
    border: 1px solid #f0f0f0; transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.testimonial-card:hover {
    transform: translateY(-6px); box-shadow: var(--shadow-xl);
    border-color: var(--yellow);
}
.testimonial-stars { color: var(--yellow); font-size: 15px; letter-spacing: 3px; margin-bottom: 1rem; }
.testimonial-text { font-size: 14px; line-height: 1.7; color: var(--text); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; }
.testimonial-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--yellow); color: var(--black);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 9999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: var(--transition); animation: waPulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background: #1ebe5b; color: #fff; }
@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============ FOOTER ITALY LINK ============ */
.footer-italy-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    margin-top: 0.75rem; font-size: 13px; color: #aaa;
    border-bottom: 1px solid transparent; transition: var(--transition);
}
.footer-italy-link:hover { color: var(--yellow); border-bottom-color: var(--yellow); }
.footer-italy-link i { color: var(--yellow); }

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

/* ===== TABLET (max-width: 1024px) ===== */
@media (max-width: 1024px) {
    .cart-toggle {
        position: absolute; left: 24px; top: 50%; transform: translateY(-50%);
        z-index: 2;
    }
    .navbar-mobile-logo {
        display: flex; align-items: center;
        position: absolute; left: 50%; transform: translateX(-50%);
        margin: 0;
    }
    .navbar-menu { display: none; }
    .mobile-toggle { display: flex; }
    .about-grid, .bio-grid { grid-template-columns: 1fr; gap: 4rem; }
    .about-content { order: -1; }
    .products-showcase { grid-template-columns: 1fr; }
    .products-side-nav {
        flex-direction: row; border-right: none;
        border-bottom: 1px solid #eee; overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .products-side-nav::-webkit-scrollbar { display: none; }
    .product-nav-item {
        border-right: none; border-bottom: 3px solid transparent;
        white-space: nowrap; padding: 1rem 1.5rem;
    }
    .product-nav-item.active { border-bottom-color: var(--yellow); }
    .sustainability-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-side { min-height: 300px; }
    .contact-form-side { padding: 3rem 2rem; }
    .footer-info-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col p { font-size: 13px; }
}

/* ===== MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
    body { font-size: 13px; }
    h1, .h1 { font-size: 28px; }
    h2, .h2 { font-size: 24px; }
    h3, .h3 { font-size: 21px; }
    h4 { font-size: 18px; }
    .container { padding: 0 16px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
    .section-testimonials { padding: 60px 0; }

    .navbar { padding: 0.75rem 0; }
    .navbar.scrolled { padding: 0.5rem 0; }
    .navbar-container { height: 50px; }
    .logo-img { height: 36px; }
    .navbar.scrolled .logo-img { height: 30px; }
    .cart-toggle { font-size: 1rem; padding: 0.25rem; }
    .mobile-toggle span { width: 20px; }

    .mobile-menu { width: 100%; max-width: 100%; }
    .mobile-menu-header { padding: 1rem 1.25rem; }
    .mobile-nav { padding: 1rem 1.25rem; }
    .mobile-link { padding: 1rem 0; font-size: 15px; letter-spacing: 1px; }

    .hero-fullscreen { min-height: 100svh; }
    .hero-fullscreen-content { padding: 1.5rem; }
    .hero-fullscreen-content h1 { font-size: 34px; line-height: 1.2em; margin-bottom: 1.5rem; }
    .btn-hero-scroll { font-size: 11px; gap: 0.5rem; }
    .btn-hero-scroll i { width: 34px; height: 34px; font-size: 10px; }
    .hero-scroll-indicator { bottom: 1.5rem; left: 1.5rem; }
    .hero-scroll-indicator span { font-size: 9px; letter-spacing: 2px; }
    .scroll-line { height: 35px; }

    .section-about, .section-bio, .section-sustainability, .section-shop, .section-products { padding: 60px 0; }
    .section-label { font-size: 11px; letter-spacing: 1.5px; padding-left: 0; }
    .section-label::before { display: none; }

    .about-content h2 { font-size: 22px; margin-bottom: 1rem; }
    .about-content p { font-size: 15px; line-height: 1.65em; }
    .about-image-box { max-height: 350px; }
    .about-img { aspect-ratio: 16/10; }
    .stats-row { gap: 0.75rem; }
    .stat-box { padding: 1rem 0.5rem; }
    .stat-number { font-size: 28px; }
    .stat-suffix { font-size: 18px; }
    .steam-container { bottom: 15%; height: 140px; }

    .product-slide-content { padding: 2rem 1.25rem; }
    .product-slide-content h3 { font-size: 21px; margin-bottom: 0.75rem; }
    .product-slide-content p { font-size: 14px; margin-bottom: 1rem; }
    .product-slide-visual { min-height: 180px; font-size: 3rem; }
    .btn-discover { font-size: 11px; }
    .btn-discover i { width: 34px; height: 34px; font-size: 10px; }

    .products-tabs { gap: 0.375rem; margin-bottom: 2rem; }
    .product-tab { padding: 0.5rem 1.25rem; font-size: 11px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .product-card-image { aspect-ratio: 1 / 1; font-size: 2.5rem; }
    .product-card-body { padding: 0.875rem; }
    .product-card-title { font-size: 15px; margin-bottom: 0.25rem; }
    .product-card-desc { font-size: 11px; margin-bottom: 0.5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .product-card-badge { font-size: 9px; padding: 0.15rem 0.5rem; margin-bottom: 0.375rem; }
    .product-price { font-size: 18px; }
    .product-price small { font-size: 10px; }
    .btn-add-cart { padding: 0.7rem 0.5rem; font-size: 10px; letter-spacing: 0.5px; }
    .product-qty-row { gap: 0.35rem; }
    .qty-btn { width: 32px; height: 32px; font-size: 14px; }
    .qty-val { font-size: 12px; width: 20px; }

    .bio-content h2 { font-size: 22px; }
    .bio-content p { font-size: 15px; }
    .bio-image-box { max-height: 350px; }
    .bio-img { aspect-ratio: 16/10; }

    .sustainability-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .sustain-card { padding: 1.5rem 1.25rem; }
    .sustain-icon { width: 56px; height: 56px; font-size: 1.25rem; margin-bottom: 1rem; }
    .sustain-card h3 { font-size: 16px; margin-bottom: 0.5rem; }
    .sustain-card p { font-size: 12px; }

    .contact-info-side { min-height: 250px; }
    .contact-form-side { padding: 2rem 1.25rem; }
    .contact-title { font-size: 22px; margin: 1.5rem 0 1rem; }
    .contact-address p { font-size: 13px; }
    .form-row-2 { grid-template-columns: 1fr; gap: 0.75rem; }
    .contact-form-dark input, .contact-form-dark select, .contact-form-dark textarea { padding: 0.875rem; font-size: 14px; }
    .btn-submit { width: 100%; padding: 1rem; font-size: 12px; }

    .footer-hero-img { height: 200px; }
    .footer-main { padding: 2.5rem 0 1.5rem; }
    .footer-logo-img { height: 45px; margin-bottom: 1rem; }
    .footer-tagline { font-size: 18px; line-height: 1.4em; margin-bottom: 1.5rem; }
    .footer-info-grid { gap: 1.5rem; padding: 1.5rem 0; }
    .footer-col h4 { font-size: 11px; margin-bottom: 0.5rem; }
    .footer-col p { font-size: 12px; line-height: 1.6; }
    .footer-sitemap { padding: 1.5rem 0; }
    .footer-sitemap h4 { font-size: 11px; margin-bottom: 0.75rem; }
    .footer-links-grid { gap: 1rem; }
    .footer-links-grid a { font-size: 12px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; padding-top: 1rem; }
    .footer-bottom-left { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .footer-bottom-left a { font-size: 11px; }
    .footer-social { gap: 0.5rem; }
    .footer-social a { width: 34px; height: 34px; font-size: 12px; }
    .footer-bottom-right p { font-size: 11px; }

    .cart-sidebar { width: 100%; max-width: 100%; right: -100%; }
    .cart-header { padding: 1rem 1.25rem; }
    .cart-header h3 { font-size: 18px; }
    .cart-items { padding: 0.75rem 1.25rem; }
    .cart-item { padding: 0.75rem 0; gap: 0.75rem; }
    .cart-item-img { width: 48px; height: 48px; font-size: 1rem; }
    .cart-item-name { font-size: 13px; }
    .cart-item-qty { font-size: 11px; }
    .cart-item-price { font-size: 13px; }
    .cart-footer { padding: 1rem 1.25rem; }

    .checkout-page { padding: 5rem 0 2rem; }
    .checkout-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .checkout-form-card, .checkout-order-card { padding: 1.5rem; border-radius: 4px; }
    .form-row-2 { grid-template-columns: 1fr; }
    .checkout-order-card { position: static; }

    .back-to-top { width: 42px; height: 42px; bottom: 1.5rem; right: 1.5rem; font-size: 1rem; }

    .nav-link, .mobile-link, .product-tab, .btn-discover, .btn-hero-scroll {
        min-height: 44px; display: inline-flex; align-items: center;
    }
    .cart-toggle, .mobile-toggle, .mobile-close {
        min-width: 44px; min-height: 44px;
    }
}

/* ===== SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
    h1, .h1 { font-size: 23px; }
    h2, .h2 { font-size: 20px; }
    h3, .h3 { font-size: 18px; }
    .hero-fullscreen-content h1 { font-size: 28px; line-height: 1.25em; }
    .about-content p { font-size: 14px; }
    .bio-content p { font-size: 14px; }
    .stats-row { flex-direction: column; gap: 0.75rem; width: 100%; }
    .stat-box { flex: 1 1 auto; min-width: 0; padding: 1.1rem 1rem; }
    .stat-number { font-size: 32px; }
    .stat-suffix { font-size: 20px; }
    .stat-box p { font-size: 12px; margin-top: 0.35rem; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
    .product-card-image { aspect-ratio: 1 / 1; }
    .product-card-body { padding: 0.75rem; }
    .product-card-desc { display: none; }
    .product-card-title { font-size: 13px; line-height: 1.35; margin-bottom: 0.4rem; min-height: 35px; }
    .product-card-badge { font-size: 8px; padding: 0.15rem 0.4rem; margin-bottom: 0.4rem; }
    .product-card-footer { flex-direction: column; align-items: stretch; gap: 0.5rem; margin-bottom: 0.75rem; text-align: center; }
    .product-price { font-size: 16px; text-align: center; }
    .product-qty-row { justify-content: center; }
    .btn-add-cart { padding: 0.7rem 0.5rem; font-size: 10px; }
    .product-slide { grid-template-columns: 1fr; }
    .product-slide-content { padding: 1.5rem 1rem; }
    .product-slide-visual { min-height: 150px; }
    .hero-scroll-indicator { display: none; }
    .footer-hero-img { height: 150px; }
    .footer-tagline { font-size: 16px; }
    .footer-info-grid { gap: 1rem; }
    .contact-form-side { padding: 1.5rem 1rem; }
}

/* ===== MOBILE: HERO = VIDEO ME PERMASAT E VETA REALE ===== */
@media (max-width: 767px) {
    .hero-fullscreen {
        height: auto; min-height: 0;
        display: block; padding: 0;
        margin-top: calc(50px + 1.5rem + env(safe-area-inset-top, 0px));
    }
    .hero-video-bg { position: static; }
    .hero-video-frame {
        position: static;
        width: 100%; height: 60vw;
        display: block; object-fit: cover;
    }
    .hero-bg-img { display: none; }
    .hero-overlay { display: none; }
    .hero-fullscreen-content { display: none; }
    .hero-scroll-indicator { display: none; }
}

/* ===== LANDSCAPE MOBILE ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-fullscreen { min-height: auto; height: auto; padding: 2rem 0; }
    .hero-fullscreen-content h1 { font-size: 22px; }
}

/* ===== SAFE AREA (notch phones) ===== */
@supports (padding-top: env(safe-area-inset-top)) {
    .navbar { padding-top: calc(0.75rem + env(safe-area-inset-top)); }
    .mobile-menu { padding-top: env(safe-area-inset-top); }
    .cart-sidebar { padding-top: env(safe-area-inset-top); }
}

/* ===== REDUCED MOTION (accessibility) ===== */
@media (prefers-reduced-motion: reduce) {
    .hero-bg-img, .hero-overlay::before, .steam,
    .scroll-line::after, .stat-box {
        animation: none !important;
    }
    .hero-bg-img { transform: scale(1.05); }
    .hero-fullscreen-content h1, .btn-hero-scroll { animation: none !important; opacity: 1; transform: none; }
}

/* ===== CUSTOM CURSOR ===== */
@media (hover: hover) and (pointer: fine) {
    body { cursor: none; }
    body a, body button, body .btn-add-cart, body .qty-btn,
    body .cart-toggle, body .mobile-menu-toggle, body input,
    body select, body textarea { cursor: none; }

    .cursor-dot, .cursor-ring {
        position: fixed; top: 0; left: 0;
        pointer-events: none; z-index: 99999;
        border-radius: 50%;
        will-change: transform;
    }
    .cursor-dot {
        width: 8px; height: 8px;
        background: var(--yellow);
        transform: translate(-50%, -50%);
    }
    .cursor-ring {
        width: 38px; height: 38px;
        border: 1.5px solid rgba(255,222,1,0.6);
        background: rgba(120,80,40,0.08);
        transform: translate(-50%, -50%);
        transition: width 0.25s ease, height 0.25s ease,
                    border-color 0.25s ease, background 0.25s ease;
    }
    .cursor-ring.cursor-clickable {
        width: 60px; height: 60px;
        border-color: var(--yellow);
        background: rgba(255,222,1,0.18);
    }
    .cursor-ring.cursor-down {
        width: 30px; height: 30px;
    }
}
