/* ===================================
   IL TEMPIO GLUTEN FREE — Redesign
   =================================== */

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

:root {
    /* Brand palette */
    --primary: #848F4C;
    --primary-dark: #6C773A;
    --primary-light: #9AA85E;
    --primary-bg: rgba(132, 143, 76, 0.08);
    --gold: #C19C48;
    --gold-dark: #A3833C;
    --gold-light: #D4B56A;
    --accent-beige: #DCCFB8;
    --dark: #2E2F2B;
    --dark-soft: #3A3B37;
    --heading: #2C3E1F;
    --heading-dark: #111827;
    --text-body: #374151;
    --gray: #777A74;
    --gray-light: #999C95;
    --gray-muted: #555555;
    --border: #E1E4D8;
    --border-light: #ECEFE3;
    --bg-light: #FAFBF6;
    --bg-cream: #F7F2E7;
    --bg-warm: #F5F1E8;
    --bg-medium: #E1E4D8;
    --white: #FFFFFF;
    --green-success: #22c55e;
    --orange: #f97316;
    --shadow-xs: 0 1px 3px rgba(46, 47, 43, 0.06);
    --shadow-sm: 0 2px 8px rgba(46, 47, 43, 0.08);
    --shadow-md: 0 4px 20px rgba(46, 47, 43, 0.1);
    --shadow-lg: 0 8px 40px rgba(46, 47, 43, 0.12);
    --shadow-xl: 0 20px 60px rgba(46, 47, 43, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s var(--ease);
    --transition-slow: 0.5s var(--ease);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section Backgrounds --- */
.section-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

.section-bg--light {
    opacity: 0.035;
}

.about, .products, .lab, .how, .reviews {
    position: relative;
    overflow: hidden;
}

.about > .container,
.products > .container,
.lab > .container,
.how > .container,
.reviews > .container {
    position: relative;
    z-index: 1;
}

/* --- Typography --- */
h1 {
    font-family: 'Lora', Georgia, serif;
    line-height: 1.15;
    color: var(--heading-dark);
}

h2, h3, h4 {
    font-family: 'Lora', Georgia, serif;
    line-height: 1.2;
    color: var(--heading);
}

em {
    font-style: italic;
    color: var(--primary);
}

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

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary);
    background: var(--primary-bg);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-tag--light {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.12);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title--light {
    color: var(--white);
}

.section-title--light em {
    color: var(--gold-light);
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(132, 143, 76, 0.35);
}

.btn--gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn--gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 156, 72, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--border);
}
.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}
.btn--outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn--white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    font-weight: 700;
}
.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn--small {
    padding: 8px 18px;
    font-size: 0.82rem;
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn--small:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn--large {
    padding: 14px 32px;
    font-size: 1rem;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
}

.nav--scrolled {
    background: rgba(250, 251, 246, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
    padding: 8px 0;
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', serif;
    font-weight: 700;
    z-index: 1001;
}

.nav__logo-icon {
    font-size: 1.4rem;
}

.nav__logo-img {
    height: 40px;
    width: auto;
}

.nav__links {
    display: flex;
    gap: 28px;
}

.nav__links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: var(--transition);
}

.nav__links a:hover {
    color: var(--primary);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    background: var(--primary);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

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

.nav__toggle span {
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a2f12 0%, #243d18 35%, #2e5020 65%, #1a2f12 100%);
    overflow: hidden;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 40%, rgba(180,140,60,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(80,140,50,0.25) 0%, transparent 60%);
    pointer-events: none;
}

.hero__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    filter: saturate(1.4) brightness(0.6);
    mix-blend-mode: screen;
}

.hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.hero__container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero__badge-icon {
    color: var(--gold);
    letter-spacing: -2px;
}

.hero__title {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    margin-bottom: 8px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--white);
}

.hero__tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 460px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero__features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero__features span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.hero__visual {
    position: relative;
}

.hero__image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/5;
    position: relative;
}

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

.hero__floating-card {
    position: absolute;
    bottom: -16px;
    left: -24px;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
}

.hero__floating-icon {
    font-size: 1.8rem;
}

.hero__floating-card strong {
    font-size: 0.85rem;
    display: block;
    font-family: 'Lora', serif;
}

.hero__floating-card small {
    font-size: 0.72rem;
    color: var(--gray-light);
}

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

/* Hero shop banner */
.hero__shop-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(180,140,50,0.18) 0%, rgba(180,140,50,0.08) 100%);
    border: 1px solid rgba(180,140,50,0.45);
    border-radius: 16px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    cursor: pointer;
}
.hero__shop-banner:hover {
    background: linear-gradient(135deg, rgba(180,140,50,0.28) 0%, rgba(180,140,50,0.14) 100%);
    border-color: rgba(180,140,50,0.7);
    transform: translateY(-2px);
}
.hero__shop-banner-icon {
    font-size: 2rem;
    flex-shrink: 0;
}
.hero__shop-banner-text {
    flex: 1;
}
.hero__shop-banner-text strong {
    display: block;
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 2px;
}
.hero__shop-banner-text span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}
.hero__shop-banner-arrow {
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.2s;
}
.hero__shop-banner:hover .hero__shop-banner-arrow {
    transform: translateX(4px);
}

.hero__location {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* --- Shop Featured (Colombe) --- */
.shop-featured {
    padding: 80px 0 60px;
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.shop-featured::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(193, 156, 72, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.shop-featured__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 48px;
}

.shop-featured__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold-light);
    background: rgba(193, 156, 72, 0.15);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.shop-featured__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 600;
}

.shop-featured__title em {
    color: var(--gold-light);
}

.shop-featured__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.shop-featured__perks {
    list-style: none;
    margin-bottom: 28px;
}

.shop-featured__perks li {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-featured__perks li::before {
    content: '✓';
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.85rem;
}

.shop-featured__note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 12px;
    font-style: italic;
}

.shop-featured__visual {
    position: relative;
}

.shop-featured__video {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 9/16;
    max-height: 480px;
}

.shop-featured__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-featured__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--white);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', serif;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.shop-featured__badge span {
    font-size: 0.9rem;
    line-height: 1;
}

.shop-featured__badge small {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Colomba Gallery */
.shop-featured__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.shop-featured__gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-featured__gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.shop-featured__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-featured__gallery-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .shop-featured__gallery {
        gap: 8px;
    }
    .shop-featured__gallery-item span {
        font-size: 0.7rem;
        padding: 6px;
    }
}

.shop-featured__more {
    position: relative;
    z-index: 1;
}

.shop-featured__more h3 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-align: center;
}

.shop-featured__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.shop-mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px;
    transition: var(--transition);
}

.shop-mini-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(193, 156, 72, 0.3);
    transform: translateY(-2px);
}

.shop-mini-card span {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.shop-mini-card strong {
    font-size: 0.85rem;
    color: var(--white);
    display: block;
}

.shop-mini-card small {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- About --- */
.about {
    padding: 80px 0;
}

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

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

.about__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about__card:hover img {
    transform: scale(1.05);
}

.about__card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(46, 47, 43, 0.75));
    color: var(--white);
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 600;
}

/* --- Products --- */
.products {
    padding: 80px 0;
    background: var(--white);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.product-card {
    background: var(--bg-light);
    padding: 28px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.product-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.product-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.product-card p {
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.5;
}

.product-card a {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
}

.product-card a:hover {
    color: var(--primary-dark);
}

/* --- Lab --- */
.lab {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.lab__images { position: relative; }

.lab__image--main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.lab__image--main img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.lab__image--secondary {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--bg-light);
}

.lab__image--secondary img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.lab__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: var(--white);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', serif;
    box-shadow: var(--shadow-md);
}

.lab__badge span { font-size: 1.1rem; font-weight: 700; line-height: 1; }
.lab__badge small { font-size: 0.45rem; text-transform: uppercase; letter-spacing: 1px; }

.lab__desc {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.lab__features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lab__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.lab__check {
    width: 24px;
    height: 24px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.lab__features strong { font-size: 0.88rem; display: block; margin-bottom: 1px; }
.lab__features small { font-size: 0.78rem; color: var(--gray-light); }

/* --- Certifications --- */
.certs {
    padding: 60px 0;
    background: var(--border-light);
}

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

.cert-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-light);
}

.cert-card__regions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
}

.cert-card__regions img { height: 40px; width: auto; }
.cert-card h3 { font-size: 1.05rem; margin-bottom: 4px; font-weight: 600; }
.cert-card p { font-size: 0.85rem; color: var(--gray); }

.certs__pills {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.pill {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
}

/* --- How It Works --- */
.how {
    padding: 80px 0;
    background: var(--white);
}

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

.how__text .section-tag { margin-bottom: 12px; }

.how__text p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-top: 12px;
}

.how__steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.how__step {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-light);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.how__step:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.how__num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.how__step strong { font-size: 0.9rem; display: block; margin-bottom: 2px; }
.how__step small { font-size: 0.78rem; color: var(--gray-light); }

/* --- Reviews --- */
.reviews {
    padding: 80px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.reviews__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.reviews__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: -1px; }
.reviews__rating span:last-child { font-size: 0.82rem; font-weight: 600; color: var(--gray); }

.reviews__carousel {
    overflow: hidden;
    margin: 0 -24px;
    padding: 0 24px;
}

.reviews__track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s var(--ease);
}

.review-card {
    min-width: 300px;
    max-width: 300px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    flex-shrink: 0;
}

.review-card__stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 10px; letter-spacing: -1px; }

.review-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 14px;
    font-family: 'Lora', serif;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-card__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--gray);
}

.review-card__author strong { font-size: 0.78rem; display: block; }
.review-card__author small { font-size: 0.68rem; color: var(--gray-light); }

.reviews__controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.reviews__arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--gray);
}

.reviews__arrow:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
}

.reviews__cta {
    display: inline-flex;
    margin: 16px auto 0;
}

/* --- Location --- */
.location {
    padding: 80px 0;
}

.location__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.location__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 380px;
}

.location__map iframe { min-height: 380px; }

.location__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location__item {
    display: flex;
    gap: 12px;
}

.location__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.location__item strong { font-size: 0.88rem; display: block; margin-bottom: 3px; }
.location__item p { font-size: 0.82rem; color: var(--gray); margin-bottom: 4px; line-height: 1.5; }
.location__item a { font-size: 0.78rem; color: var(--primary); font-weight: 600; }
.location__item a:hover { color: var(--primary-dark); }

.location__item-links { display: flex; gap: 14px; }
.location__item-links a { font-size: 0.78rem; color: var(--primary); font-weight: 600; }

/* --- Social --- */
.social {
    padding: 60px 0;
    background: var(--white);
}

.social__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.social__card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
}

.social__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.social__card:hover img { transform: scale(1.06); }

.social__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(46, 47, 43, 0.8));
    transform: translateY(6px);
    opacity: 0;
    transition: var(--transition);
}

.social__card:hover .social__card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.social__card-overlay h3 {
    color: var(--white);
    font-size: 0.9rem;
}

.social__links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* --- Shop Coming Soon Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--gray-light);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--dark);
}

.modal-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.modal-box h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.modal-box p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.modal-box p strong {
    color: var(--primary);
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.modal-actions .btn {
    justify-content: center;
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 48px 0 0;
}

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

.footer__logo { margin-bottom: 12px; }

.footer__logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer__brand p { font-size: 0.8rem; line-height: 1.6; }

.footer__col h4 {
    color: var(--white);
    font-size: 0.8rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__col ul li { margin-bottom: 6px; }
.footer__col ul li a, .footer__col ul li { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }
.footer__col ul li a:hover { color: var(--primary-light); }

.footer__legal-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 0;
    text-align: center;
}

.footer__legal-section h4 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 4px;
}

.footer__legal-section > p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 14px;
}

.footer__legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__legal-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.footer__legal-links a:hover {
    color: var(--primary-light);
    border-color: rgba(154, 168, 94, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.footer__legal-links span {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.75rem;
}

.footer__bottom { padding: 16px 0; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.06); }

.footer__legal {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 4px;
}

.footer__legal a { font-size: 0.72rem; color: rgba(255, 255, 255, 0.4); }
.footer__legal a:hover { color: var(--primary-light); }
.footer__legal span { color: rgba(255, 255, 255, 0.2); }
.footer__bottom p { font-size: 0.72rem; color: rgba(255, 255, 255, 0.35); margin-bottom: 2px; }
.footer__credit a { color: var(--primary-light); }

.footer__disclaimer {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
}

/* --- WhatsApp FAB --- */
.fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Colomba Splash Banner --- */
.colomba-splash {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.colomba-splash.active {
    opacity: 1;
    pointer-events: all;
}
.colomba-splash__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
}
.colomba-splash__card {
    position: relative;
    z-index: 1;
    background: #1a1a1a;
    border-radius: 24px 24px 0 0;
    width: 100%;
    max-width: 540px;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.colomba-splash.active .colomba-splash__card {
    transform: translateY(0);
}
.colomba-splash__media {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #111;
}
.colomba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    width: 100%;
}
.colomba-grid__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.colomba-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 80%;
    display: block;
    transition: transform 0.4s ease;
}
.colomba-grid__item:hover img {
    transform: scale(1.04);
}
.colomba-grid__item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px 4px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.colomba-splash__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6) 100%);
}
.colomba-splash__body {
    padding: 20px 24px 32px;
    text-align: center;
}
.colomba-splash__label {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.colomba-splash__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 6px;
    font-weight: 600;
}
.colomba-splash__sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
    line-height: 1.5;
}
.colomba-splash__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.colomba-splash__cta {
    display: block;
    background: var(--gold);
    color: var(--white);
    text-align: center;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s;
}
.colomba-splash__cta:hover { background: #b8892a; }
.colomba-splash__skip {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.colomba-splash__timer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    z-index: 10000;
    padding: 20px 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner__content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-banner__link {
    color: var(--gold);
    font-size: 0.8rem;
    text-decoration: underline;
    white-space: nowrap;
}

.btn--small {
    padding: 8px 20px;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
    .cookie-banner__content p {
        font-size: 0.8rem;
    }
}

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

@media (max-width: 1024px) {
    .hero__container { grid-template-columns: 1fr; gap: 40px; }
    .hero__visual { max-width: 460px; margin: 0 auto; }
    .hero__floating-card { left: 10px; bottom: -10px; }
    .shop-featured__layout { grid-template-columns: 1fr; gap: 32px; }
    .shop-featured__cards { grid-template-columns: repeat(3, 1fr); }
    .products__grid { grid-template-columns: repeat(2, 1fr); }
    .lab__layout { grid-template-columns: 1fr; gap: 40px; }
    .lab__images { max-width: 500px; margin: 0 auto; }
    .how__layout { grid-template-columns: 1fr; gap: 32px; }
    .location__layout { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
    .certs__row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav__links, .nav__cta { display: none; }
    .nav__toggle { display: flex; }
    .nav__links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--bg-light);
        padding: 100px 32px 32px;
        gap: 0;
        z-index: 999;
    }
    .nav__links.active li { border-bottom: 1px solid var(--border-light); }
    .nav__links.active a { font-size: 1.15rem; display: block; padding: 14px 0; }
    .nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__toggle.active span:nth-child(2) { opacity: 0; }
    .nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Hero mobile — full screen, centered, no side image */
    .hero {
        min-height: 100svh;
        padding: 0;
        flex-direction: column;
        justify-content: flex-end;
    }
    .hero__bg-image {
        opacity: 0.55;
        filter: saturate(1.2) brightness(0.55);
        mix-blend-mode: normal;
    }
    .hero__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px 40px;
        gap: 0;
        width: 100%;
    }
    .hero__visual { display: none; }
    .hero__badge { margin-bottom: 16px; }
    .hero__title {
        font-size: 2.6rem;
        margin-bottom: 6px;
        line-height: 1.05;
    }
    .hero__tagline {
        font-size: 1rem;
        margin-bottom: 16px;
        letter-spacing: 3px;
    }
    .hero__subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
        max-width: 100%;
        color: rgba(255,255,255,0.9);
    }
    .hero__actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-bottom: 20px;
    }
    .hero__actions .btn { justify-content: center; width: 100%; }
    .hero__features {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero__features span { font-size: 0.75rem; }
    .hero__shop-banner { margin-top: 20px; padding: 12px 14px; gap: 10px; }
    .hero__shop-banner-icon { font-size: 1.6rem; }
    .hero__shop-banner-text strong { font-size: 0.9rem; }
    .hero__shop-banner-text span { font-size: 0.75rem; }
    .hero__location {
        position: relative;
        bottom: auto; left: auto; transform: none;
        text-align: center;
        padding: 12px 20px 20px;
        width: 100%;
        display: block;
    }

    .shop-featured__layout { grid-template-columns: 1fr; }
    .shop-featured__cards { grid-template-columns: 1fr; }

    .about__grid { grid-template-columns: 1fr; }
    .about__card { aspect-ratio: 16/9; }
    .products__grid { grid-template-columns: 1fr; }
    .certs__row { grid-template-columns: 1fr; }
    .how__layout { grid-template-columns: 1fr; }

    .review-card { min-width: 260px; max-width: 260px; }
    .social__grid { grid-template-columns: 1fr; }
    .social__links { flex-direction: column; align-items: center; }
    .footer__grid { grid-template-columns: 1fr; gap: 20px; }
    .section-title { font-size: 1.7rem; }
    .lab__image--secondary { right: -10px; bottom: -16px; width: 50%; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 1.7rem; }
    .container { padding: 0 16px; }
}
