/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
    /* Primary Palette - Warm & Traditional */
    --color-tomato: #B8352B;          /* Rich, earthy tomato red */
    --color-tomato-deep: #8B2920;     /* Deep tomato */
    --color-tomato-light: #D4453A;    /* Brighter tomato */
    
    --color-leaf: #4A7C59;            /* Sage/basil green */
    --color-leaf-deep: #2D4A35;       /* Deep forest */
    --color-leaf-light: #5E9E6E;      /* Fresh herb green */
    
    /* Legacy aliases for compatibility */
    --color-rosso: var(--color-tomato);
    --color-rosso-deep: var(--color-tomato-deep);
    --color-rosso-light: var(--color-tomato-light);
    --color-verde: var(--color-leaf);
    --color-verde-deep: var(--color-leaf-deep);
    --color-verde-light: var(--color-leaf-light);
    --color-verde-muted: #5A7D5E;
    
    /* Neutrals - Warm & Inviting */
    --color-cream: #FAF6F1;           /* Warm cream */
    --color-cream-dark: #F2EBE3;      /* Darker cream */
    --color-ivory: #FFFCF8;           /* Soft ivory */
    --color-linen: #EDE4D8;           /* Warm linen */
    --color-parchment: #DDD3C4;       /* Aged parchment */
    --color-warm-white: #FEFDFB;
    
    /* Accents */
    --color-gold: #C9A227;            /* Warm olive oil gold */
    --color-gold-light: #DBBA4A;
    --color-terracotta: #C27B5C;      /* Terracotta pot */
    --color-olive: #7D8B5A;           /* Olive green */
    --color-wood: #6B5344;            /* Warm wood brown */
    
    /* Text - HIGH CONTRAST */
    --color-text: #2C2416;            /* Warm near-black */
    --color-text-muted: #5C5347;      /* Warm dark gray */
    --color-text-light: #8A8279;      /* Warm medium gray */
    --color-text-on-dark: #FAF6F1;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    --font-accent: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-dramatic: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(43, 43, 40, 0.08);
    --shadow-medium: 0 8px 40px rgba(43, 43, 40, 0.12);
    --shadow-strong: 0 16px 60px rgba(43, 43, 40, 0.16);
    --shadow-glow: 0 0 40px rgba(139, 38, 53, 0.15);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Container */
    --container-max: 1400px;
    --container-narrow: 900px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 18px;  /* Larger base for readability */
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1.125rem;      /* 20px base body text */
    font-weight: 400;
    line-height: 1.8;         /* More line height for readability */
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

/* Selection */
::selection {
    background-color: var(--color-tomato);
    color: white;
}

/* ========================================
   TYPOGRAPHY - LARGE & BOLD
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;         /* Bold headings */
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--color-text); /* Ensure high contrast */
}

h1 {
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

p {
    margin-bottom: 1.5em;
    font-size: 1.125rem;      /* 20px paragraph text */
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--color-tomato-deep);  /* Darker for better contrast */
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-tomato);
}

.text-accent {
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.text-script {
    font-family: var(--font-display);
    font-style: italic;
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--space-3xl) 0;
}

.section--sm {
    padding: var(--space-2xl) 0;
}

.section--lg {
    padding: calc(var(--space-3xl) * 1.5) 0;
}

/* ========================================
   DECORATIVE ELEMENTS
   ======================================== */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.ornament::before,
.ornament::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.ornament__symbol {
    color: var(--color-gold);
    font-size: 1.25rem;
}

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-parchment), transparent);
    margin: var(--space-xl) 0;
}

.divider--gold {
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* Flourish decoration */
.flourish {
    position: relative;
    display: inline-block;
}

.flourish::before,
.flourish::after {
    content: '❧';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gold);
    font-size: 1.5rem;
    opacity: 0.6;
}

.flourish::before {
    right: calc(100% + var(--space-md));
    transform: translateY(-50%) scaleX(-1);
}

.flourish::after {
    left: calc(100% + var(--space-md));
}

/* ========================================
   BUTTONS - LARGE & BOLD
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1.125rem 2.75rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    text-decoration: none;
}

.btn--primary {
    background-color: var(--color-tomato);
    color: white;
    border-color: var(--color-tomato);
}

.btn--primary:hover {
    background-color: var(--color-tomato-deep);
    border-color: var(--color-tomato-deep);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn--secondary {
    background-color: var(--color-leaf);
    color: white;
    border-color: var(--color-leaf);
}

.btn--secondary:hover {
    background-color: var(--color-leaf-deep);
    border-color: var(--color-leaf-deep);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn--outline {
    background-color: transparent;
    color: var(--color-tomato);
    border: 2px solid var(--color-tomato);
}

.btn--outline:hover {
    background-color: var(--color-tomato);
    color: white;
}

.btn--outline-light {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn--outline-light:hover {
    background-color: white;
    color: var(--color-tomato);
}

.btn--gold {
    background: var(--color-gold);
    color: white;
    border-color: var(--color-gold);
}

.btn--gold:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Text link button */
.btn-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-tomato);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    text-decoration: none;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width var(--transition-smooth);
}

.btn-link:hover {
    text-decoration: none;
}

.btn-link:hover::after {
    width: 100%;
}

.btn-link__arrow {
    transition: transform var(--transition-smooth);
    font-size: 1.25rem;
}

.btn-link:hover .btn-link__arrow {
    transform: translateX(4px);
}

/* ========================================
   HEADER & NAVIGATION - Warm & Traditional
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-smooth);
}

/* Top bar accent */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-leaf), var(--color-tomato), var(--color-gold));
}

.header__inner-wrap {
    background-color: var(--color-warm-white);
    border-bottom: 1px solid var(--color-parchment);
}

.header--scrolled .header__inner-wrap {
    box-shadow: 0 4px 20px rgba(44, 36, 22, 0.1);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-decoration: none;
    transition: transform var(--transition-smooth);
}

.header__logo:hover {
    transform: scale(1.02);
    text-decoration: none;
}

/* Logo mark placeholder - for the tomato CG logo */
.header__logo-mark {
    height: 56px;
    width: auto;
}

.header__logo-text {
    display: flex;
    flex-direction: column;
}

.header__logo-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.1;
}

.header__logo-tagline {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-leaf);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    list-style: none;
}

.nav__link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav__link:hover {
    color: var(--color-tomato);
    background-color: rgba(184, 53, 43, 0.06);
    text-decoration: none;
}

.nav__link--active {
    color: var(--color-tomato);
    background-color: rgba(184, 53, 43, 0.08);
}

/* Mobile Menu Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

.nav__toggle-line {
    width: 26px;
    height: 3px;
    background-color: var(--color-text);
    transition: all var(--transition-smooth);
    transform-origin: center;
    border-radius: 2px;
}

.nav__toggle--active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle--active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle--active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   HERO SECTIONS - Warm & Inviting
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-cream);
}

.hero__bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    z-index: 1;
}

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

/* Soft blend from content to image */
.hero__bg::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(to right, var(--color-cream), transparent);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    width: 50%;
    padding: var(--space-3xl) 0;
    padding-right: var(--space-2xl);
}

.hero__title {
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

.hero__title-accent {
    color: var(--color-tomato);
    font-style: italic;
}

.hero__description {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
    animation-delay: 0.3s;
}

.hero__cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
    animation-delay: 0.4s;
}

.hero__features {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-parchment);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
    animation-delay: 0.5s;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.hero__feature-icon {
    width: 24px;
    height: 24px;
    color: var(--color-leaf);
}

.hero__feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

/* Remove old hero overlay styles for this layout */
.hero__overlay {
    display: none;
}

.hero__scroll {
    display: none;
}

.hero__subtitle {
    display: none;
}

/* Page Hero (for inner pages) - keeps the full-width image style */
.hero--page {
    min-height: 50vh;
    padding-top: 100px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero--page .hero__bg {
    width: 100%;
    left: 0;
}

.hero--page .hero__bg::before {
    display: none;
}

.hero--page .hero__overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(44, 36, 22, 0.6);
}

.hero--page .hero__content {
    width: 100%;
    max-width: 800px;
    padding: var(--space-2xl);
    text-align: center;
    margin: 0 auto;
}

.hero--page .hero__title {
    color: #FFFFFF;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.hero--page .hero__description {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero--page .hero__subtitle {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: var(--space-md);
}

/* ========================================
   PRODUCT CARDS
   ======================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.product-card {
    position: relative;
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.product-card__image-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-dramatic);
}

.product-card:hover .product-card__image {
    transform: scale(1.08);
}

.product-card__badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 0.5rem 1rem;
    background-color: var(--color-tomato);
    color: white;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
}

.product-card__content {
    padding: var(--space-lg);
    text-align: center;
}

.product-card__category {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-leaf);
    margin-bottom: var(--space-sm);
}

.product-card__title {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.product-card__description {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

/* ========================================
   RECIPE CARDS
   ======================================== */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: var(--space-lg);
}

.recipe-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.recipe-card__image-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.recipe-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-dramatic);
}

.recipe-card:hover .recipe-card__image {
    transform: scale(1.05);
}

.recipe-card__time {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
}

.recipe-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: var(--space-lg);
}

.recipe-card__category {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-tomato);
    margin-bottom: var(--space-sm);
}

.recipe-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.recipe-card__description {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    flex: 1;
    line-height: 1.6;
}

.recipe-card__link {
    align-self: flex-start;
}

/* ========================================
   FEATURE SECTIONS
   ======================================== */
.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.feature--reverse {
    direction: rtl;
}

.feature--reverse > * {
    direction: ltr;
}

.feature__image-wrap {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.feature__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature__accent {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--color-leaf);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.feature__accent--top-right {
    top: -20px;
    right: -20px;
}

.feature__accent--bottom-left {
    bottom: -20px;
    left: -20px;
}

.feature__content {
    max-width: 520px;
}

.feature--reverse .feature__content {
    margin-left: auto;
}

.feature__subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-leaf);
    margin-bottom: var(--space-md);
}

.feature__title {
    margin-bottom: var(--space-lg);
}

.feature__text {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
    line-height: 1.8;
}

.feature__text p {
    margin-bottom: 1.25em;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-2xl);
}

.testimonial__quote {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 10rem;
    color: var(--color-tomato);
    opacity: 0.15;
    line-height: 1;
}

.testimonial__text {
    font-family: var(--font-display);
    font-size: clamp(1.625rem, 3.5vw, 2.25rem);
    font-weight: 500;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    position: relative;
    line-height: 1.5;
}

.testimonial__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.testimonial__name {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
}

.testimonial__location {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 2px solid var(--color-parchment);
}

.faq-item__trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-item__question {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-text);
    transition: color var(--transition-fast);
    padding-right: var(--space-md);
}

.faq-item__trigger:hover .faq-item__question {
    color: var(--color-tomato);
}

.faq-item__icon {
    width: 28px;
    height: 28px;
    position: relative;
    flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-tomato);
    transition: transform var(--transition-smooth);
}

.faq-item__icon::before {
    width: 100%;
    height: 3px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-item__icon::after {
    width: 3px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-item--active .faq-item__icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.faq-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.faq-item--active .faq-item__content {
    max-height: 500px;
}

.faq-item__answer {
    padding-bottom: var(--space-lg);
    color: var(--color-text-muted);
    font-size: 1.125rem;
    line-height: 1.8;
}

/* ========================================
   CONTACT FORM
   ======================================== */
.form {
    max-width: 650px;
    margin: 0 auto;
}

.form__group {
    margin-bottom: var(--space-lg);
}

.form__label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    color: var(--color-text);
    background-color: white;
    border: 2px solid var(--color-parchment);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-tomato);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--color-text-light);
}

.form__textarea {
    min-height: 180px;
    resize: vertical;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form__submit {
    width: 100%;
    margin-top: var(--space-md);
}

/* ========================================
   STORE FINDER
   ======================================== */
.store-finder {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    background-color: var(--color-ivory);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.store-finder__search {
    padding: var(--space-xl);
}

.store-finder__map {
    position: relative;
    min-height: 500px;
    background-color: var(--color-linen);
}

.store-finder__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-list {
    margin-top: var(--space-lg);
}

.store-item {
    padding: var(--space-md);
    background-color: var(--color-cream);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.store-item:hover {
    background-color: var(--color-cream-dark);
    transform: translateX(4px);
}

.store-item__name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.store-item__address {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.store-item__distance {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--color-verde);
    margin-top: var(--space-xs);
}

/* ========================================
   FOOTER - Warm & Traditional
   ======================================== */
.footer {
    background-color: var(--color-cream-dark);
    border-top: 1px solid var(--color-parchment);
}

.footer__top-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--color-leaf), var(--color-tomato), var(--color-gold));
}

.footer__main {
    padding-top: var(--space-3xl);
}

.footer__social {
    margin-bottom: 1.5em;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}

.footer__brand {
    max-width: 340px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer__logo-mark {
    width: auto;
    height: 48px;
}

.footer__logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.footer__tagline {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-leaf);
    margin-bottom: var(--space-md);
}

.footer__description {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.footer__nav-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-tomato);
    display: inline-block;
}

.footer__nav-list {
    list-style: none;
}

.footer__nav-item {
    margin-bottom: var(--space-sm);
}

.footer__nav-link {
    font-size: 1rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer__nav-link:hover {
    color: var(--color-tomato);
    text-decoration: none;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-parchment);
}

.footer__copyright {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.footer__copyright a {
    color: var(--color-text-muted);
    text-decoration: none;
}

.footer__copyright a:hover {
    color: var(--color-tomato);
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: var(--color-linen);
    border-radius: 50%;
    color: var(--color-text);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.footer__social-link:hover {
    background-color: var(--color-tomato);
    color: white;
    text-decoration: none;
}

/* ========================================
   CTA SECTIONS - Warm & Traditional
   ======================================== */
.cta {
    position: relative;
    padding: var(--space-3xl) 0;
    text-align: center;
    overflow: hidden;
}

.cta--rosso {
    background-color: var(--color-tomato);
    color: #FFFFFF;
}

.cta--verde {
    background-color: var(--color-leaf);
    color: #FFFFFF;
}

.cta--warm {
    background-color: var(--color-linen);
    color: var(--color-text);
}

.cta--image {
    background-size: cover;
    background-position: center;
}

.cta--image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(44, 36, 22, 0.7);
}

.cta__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta--warm .cta__icon {
    background: var(--color-tomato);
}

.cta__icon svg {
    width: 28px;
    height: 28px;
    color: #FFFFFF;
}

.cta__subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: var(--space-md);
}

.cta--warm .cta__subtitle {
    color: var(--color-leaf);
}

.cta__title {
    color: #FFFFFF;
    margin-bottom: var(--space-lg);
}

.cta--warm .cta__title {
    color: var(--color-text);
}

.cta__text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.cta--warm .cta__text {
    color: var(--color-text-muted);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--transition-dramatic);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll--delay-1 { transition-delay: 0.1s; }
.animate-on-scroll--delay-2 { transition-delay: 0.2s; }
.animate-on-scroll--delay-3 { transition-delay: 0.3s; }
.animate-on-scroll--delay-4 { transition-delay: 0.4s; }

/* Mobile Navigation */
@media (max-width: 1250px) {
    .nav__list {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-lg);
        background-color: var(--color-warm-white);
        z-index: 999;
        padding: var(--space-xl);
    }
    
    .nav__list.is-active {
        display: flex;
    }
    
    .nav__link {
        font-size: 1.1rem;
        padding: var(--space-md) var(--space-xl);
        max-width: 280px;
        text-align: center;
    }
    
    .nav__toggle {
        display: flex;
    }
}

/* ========================================
   RESPONSIVE - TABLET (1024px and below)
   ======================================== */
@media (max-width: 1024px) {
    .feature {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .feature--reverse {
        direction: ltr;
    }
    
    .feature__content,
    .feature--reverse .feature__content {
        max-width: 100%;
        margin: 0;
    }
    
    .feature__image-wrap {
        aspect-ratio: 16/9;
    }
    
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
    
    .store-finder {
        grid-template-columns: 1fr;
    }
    
    .store-finder__map {
        order: -1;
        min-height: 300px;
    }
    
    /* Hero tablet - start stacking */
    .hero__bg {
        width: 45%;
    }
    
    .hero__content {
        width: 58%;
        padding-right: var(--space-lg);
    }
    
    .hero__title {
        font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    }
}

/* ========================================
   RESPONSIVE - MOBILE (768px and below)
   ======================================== */
@media (max-width: 768px) {
    :root {
        --space-3xl: 3rem;
        --space-2xl: 2rem;
    }
    
    /* ---- HEADER MOBILE ---- */
    .header__inner {
        padding: var(--space-sm) 0;
    }
    
    .header__logo {
        gap: var(--space-sm);
    }
    
    .header__logo-mark {
        width: 40px;
        height: 40px;
    }
    
    .header__logo-mark::before {
        font-size: 0.9rem;
    }
    
    .header__logo-mark::after {
        width: 10px;
        height: 8px;
        top: -2px;
        right: 1px;
    }
    
    .header__logo-name {
        font-size: 1.2rem;
    }
    
    .header__logo-tagline {
        font-size: 0.55rem;
        letter-spacing: 0.08em;
    }
    
    /* ---- HERO MOBILE - STACKED LAYOUT ---- */
    .hero {
        flex-direction: column;
        min-height: auto;
        padding-top: 70px;
    }
    
    .hero__bg {
        position: relative;
        width: 100%;
        height: 250px;
        order: -1;
    }
    
    .hero__bg::before {
        display: none;
    }
    
    .hero__bg-image {
        border-radius: 0;
    }
    
    .hero__content {
        width: 100%;
        padding: var(--space-lg);
        padding-top: var(--space-xl);
        text-align: center;
    }
    
    .hero__badge {
        margin: 0 auto var(--space-md);
        padding: var(--space-xs) var(--space-md);
    }
    
    .hero__badge-text {
        font-size: 0.8rem;
    }
    
    .hero__badge-icon {
        width: 16px;
        height: 16px;
    }
    
    .hero__title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: var(--space-md);
    }
    
    .hero__title br {
        display: none;
    }
    
    .hero__description {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: var(--space-lg);
    }
    
    .hero__cta {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .hero__cta .btn {
        width: 100%;
        max-width: 260px;
    }
    
    .hero__features {
        flex-direction: column;
        gap: var(--space-sm);
        align-items: center;
        margin-top: var(--space-lg);
        padding-top: var(--space-lg);
    }
    
    .hero__feature {
        justify-content: center;
    }
    
    .hero__feature-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero__feature-text {
        font-size: 0.85rem;
    }
    
    /* Page heroes (inner pages) */
    .hero--page {
        min-height: 40vh;
        padding-top: 80px;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    
    .hero--page .hero__bg {
        position: absolute;
        width: 100%;
        height: 100%;
        order: unset;
    }
    
    .hero--page .hero__content {
        padding: var(--space-lg);
        text-align: center;
    }
    
    .hero--page .hero__title {
        font-size: 1.75rem;
        color: #FFFFFF;
    }
    
    .hero--page .hero__description {
        color: rgba(255, 255, 255, 0.9);
    }
    
    /* ---- SECTIONS MOBILE ---- */
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .section--lg {
        padding: var(--space-3xl) 0;
    }
    
    /* ---- TYPOGRAPHY MOBILE ---- */
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.625rem; }
    h3 { font-size: 1.375rem; }
    
    .text-accent {
        font-size: 0.8rem;
        letter-spacing: 0.1em;
    }
    
    /* ---- PRODUCT/RECIPE GRIDS MOBILE ---- */
    .product-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .product-card__content {
        padding: var(--space-md);
    }
    
    .product-card__title {
        font-size: 1.25rem;
    }
    
    .recipe-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    /* ---- FEATURE SECTIONS MOBILE ---- */
    .feature__content {
        text-align: center;
    }
    
    .feature__accent {
        display: none;
    }
    
    /* ---- TESTIMONIALS MOBILE ---- */
    .testimonial {
        padding: var(--space-lg);
    }
    
    .testimonial__text {
        font-size: 1.125rem;
    }
    
    .testimonial__quote {
        font-size: 5rem;
    }
    
    /* ---- FAQ MOBILE ---- */
    .faq-item__question {
        font-size: 1.1rem;
        padding-right: var(--space-sm);
    }
    
    .faq-item__icon {
        width: 22px;
        height: 22px;
    }
    
    /* ---- CTA SECTIONS MOBILE ---- */
    .cta {
        padding: var(--space-2xl) var(--space-md);
    }
    
    .cta__title {
        font-size: 1.5rem;
    }
    
    .cta__text {
        font-size: 1rem;
    }
    
    /* ---- BUTTONS MOBILE ---- */
    .btn {
        padding: 0.9rem 1.75rem;
        font-size: 0.85rem;
    }
    
    /* ---- FORMS MOBILE ---- */
    .form__row {
        grid-template-columns: 1fr;
    }
    
    .form__input,
    .form__textarea {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
    
    /* ---- FOOTER MOBILE ---- */
    .footer__main {
        padding-top: var(--space-2xl);
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }
    
    .footer__brand {
        max-width: 100%;
    }
    
    .footer__logo {
        justify-content: center;
    }
    
    .footer__logo-mark {
        width: 36px;
        height: 36px;
    }
    
    .footer__logo-mark::before {
        font-size: 0.85rem;
    }
    
    .footer__logo-text {
        font-size: 1.25rem;
    }
    
    .footer__tagline {
        font-size: 0.7rem;
    }
    
    .footer__description {
        font-size: 0.95rem;
    }
    
    .footer__nav-title {
        display: inline-block;
        font-size: 0.8rem;
    }
    
    .footer__nav-link {
        font-size: 0.95rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }
    
    .footer__copyright {
        font-size: 0.85rem;
    }
    
    .footer__social-link {
        width: 38px;
        height: 38px;
    }
    
    /* ---- STORE FINDER MOBILE ---- */
    .store-finder__search {
        padding: var(--space-md);
    }
    
    .store-finder__map {
        min-height: 220px;
    }
    
    /* ---- INSTAGRAM GRID MOBILE ---- */
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xs);
    }
    
    /* ---- CONTACT PAGE GRID MOBILE ---- */
    .section > .container > [style*="grid-template-columns: 1fr 1fr"] {
        display: block !important;
    }
    
    .section > .container > [style*="grid-template-columns: 1fr 1fr"] > * {
        margin-bottom: var(--space-xl);
    }
    
    .section > .container > [style*="grid-template-columns: 1fr 1fr"] > *:last-child {
        margin-bottom: 0;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (480px and below)
   ======================================== */
@media (max-width: 480px) {
    :root {
        --space-3xl: 2.5rem;
        --space-2xl: 1.5rem;
        --space-xl: 1.25rem;
    }
    
    .container {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }
    
    /* Header small mobile */
    .header__logo-mark {
        width: 36px;
        height: 36px;
    }
    
    .header__logo-name {
        font-size: 1.1rem;
    }
    
    .header__logo-tagline {
        display: none;
    }
    
    /* Hero small mobile */
    .hero__bg {
        height: 200px;
    }
    
    .hero__title {
        font-size: 1.75rem;
    }
    
    .hero__description {
        font-size: 0.95rem;
    }
    
    .hero__badge {
        padding: 6px 12px;
    }
    
    .hero__badge-text {
        font-size: 0.7rem;
    }
    
    /* Buttons small mobile */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
        width: 100%;
    }
    
    /* Cards small mobile */
    .product-card__title,
    .recipe-card__title {
        font-size: 1.125rem;
    }
    
    .product-card__description,
    .recipe-card__description {
        font-size: 0.9rem;
    }
    
    /* Footer small mobile */
    .footer__logo-text {
        font-size: 1.1rem;
    }
    
    .footer__nav {
        margin-bottom: var(--space-md);
    }
    
    /* CTA small mobile */
    .cta__title {
        font-size: 1.375rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-md { margin-top: var(--space-md); }
.mb-md { margin-bottom: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-xl { margin-bottom: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

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

/* Background colors */
.bg-cream { background-color: var(--color-cream); }
.bg-ivory { background-color: var(--color-ivory); }
.bg-linen { background-color: var(--color-linen); }
.bg-rosso { background-color: var(--color-rosso); }
.bg-verde { background-color: var(--color-verde); }

/* Text colors */
.text-rosso { color: var(--color-tomato); }
.text-verde { color: var(--color-leaf); }
.text-gold { color: var(--color-gold); }
.text-muted { color: var(--color-text-muted); }

/* Filter buttons */
.filter-btn--active {
    background-color: var(--color-rosso);
    color: var(--color-cream);
    border-color: var(--color-rosso);
}

/* Recipe card hidden state */
.recipe-card.is-hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

/* Form error state */
.form__input--error {
    border-color: var(--color-rosso);
    box-shadow: 0 0 0 3px rgba(139, 38, 53, 0.15);
}

/* Store item active */
.store-item--active {
    background-color: var(--color-rosso);
    color: var(--color-cream);
}

.store-item--active .store-item__address,
.store-item--active .store-item__distance {
    color: rgba(250, 247, 242, 0.8);
}

/* Product card link reset */
.product-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ========================================
   LEGAL/POLICY PAGES
   ======================================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-intro {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 2px solid var(--color-parchment);
}

.legal-intro .text-large {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.legal-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-parchment);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.legal-section h3 {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
}

.legal-section p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.legal-section ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
    color: var(--color-text-muted);
}

.legal-section li {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.legal-section a {
    color: var(--color-tomato);
}

.legal-section a:hover {
    color: var(--color-tomato-deep);
}

.legal-section strong {
    color: var(--color-text);
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .legal-section h3 {
        font-size: 1rem;
    }
    
    .legal-intro .text-large {
        font-size: 1.1rem;
    }
}


/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */
.product-detail {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--space-2xl);
    align-items: start;
    padding: var(--space-2xl) 0;
}

.product-detail--reverse {
    grid-template-columns: 1fr 400px;
}

.product-detail--reverse .product-detail__image {
    order: 2;
}

.product-detail--reverse .product-detail__content {
    order: 1;
}

.product-detail__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.product-detail__image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail__badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 0.5rem 1rem;
    background-color: var(--color-tomato);
    color: white;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
}

.product-detail__badge--verde {
    background-color: var(--color-leaf);
}

.product-detail__badge--gold {
    background-color: var(--color-gold);
    color: var(--color-text);
}

.product-detail__content {
    padding: var(--space-md) 0;
}

.product-detail__category {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-leaf);
    margin-bottom: var(--space-sm);
}

.product-detail__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.product-detail__description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.product-detail__ingredients {
    background-color: var(--color-linen);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.product-detail__ingredients h4 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.product-detail__ingredients p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

.product-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.product-detail__meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

.product-detail__meta-item svg {
    color: var(--color-leaf);
}

.product-detail__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.product-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-parchment), transparent);
    margin: var(--space-lg) 0;
}

/* Quality Grid */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.quality-item {
    text-align: center;
    padding: var(--space-lg);
}

.quality-item__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-md);
    background-color: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-tomato);
}

.quality-item__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.quality-item__text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Product Detail Responsive */
@media (max-width: 1024px) {
    .product-detail {
        grid-template-columns: 350px 1fr;
        gap: var(--space-xl);
    }
    
    .product-detail--reverse {
        grid-template-columns: 1fr 350px;
    }
    
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: var(--space-xl) 0;
    }
    
    .product-detail--reverse {
        grid-template-columns: 1fr;
    }
    
    .product-detail--reverse .product-detail__image,
    .product-detail--reverse .product-detail__content {
        order: unset;
    }
    
    .product-detail__image {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .product-detail__content {
        text-align: center;
    }
    
    .product-detail__title {
        font-size: 1.75rem;
    }
    
    .product-detail__description {
        font-size: 1rem;
    }
    
    .product-detail__meta {
        justify-content: center;
    }
    
    .product-detail__actions {
        justify-content: center;
    }
    
    .product-detail__ingredients {
        text-align: left;
    }
    
    .quality-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
    
    .quality-item {
        padding: var(--space-md);
    }
    
    .quality-item__icon {
        width: 60px;
        height: 60px;
    }
    
    .quality-item__icon svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .product-detail__image {
        max-width: 100%;
    }
    
    .product-detail__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .product-detail__actions .btn {
        width: 100%;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
    }
}

