:root {
    --primary: #c41e3a;
    --primary-dark: #9a1830;
    --secondary: #1a1a1a;
    --accent: #d4a853;
    --text: #333;
    --text-light: #6c757d;
    --bg-light: #f8f6f3;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --top-bar-height: 0px;
}

* { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text);
    padding-top: 80px;
    background: #fff;
}

body.has-top-bar {
    --top-bar-height: 38px;
    padding-top: calc(80px + var(--top-bar-height));
}

h1, h2, h3, h4, h5 { font-family: var(--font-display); }

em { font-style: normal; color: var(--primary); }

/* Header */
.site-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1045;
    height: var(--top-bar-height, 38px);
    background: var(--top-bar-bg, var(--primary));
    color: var(--top-bar-color, #fff);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-top-bar .top-bar-entry,
.site-top-bar .top-bar-link {
    color: inherit;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.site-top-bar .top-bar-link:hover {
    color: var(--accent);
}

.site-top-bar--scroll .top-bar-marquee {
    height: 100%;
    display: flex;
    align-items: center;
}

.site-top-bar--scroll .top-bar-track {
    display: flex;
    width: max-content;
    animation: topBarScroll var(--top-bar-speed, 35s) linear infinite;
}

.site-top-bar--scroll .top-bar-content {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding-right: 2rem;
}

.site-top-bar--scroll .top-bar-separator {
    opacity: 0.55;
}

.site-top-bar--fade,
.site-top-bar--fade #topBarCarousel,
.site-top-bar--fade .carousel-inner,
.site-top-bar--fade .carousel-item {
    height: 100%;
}

.site-top-bar--fade .top-bar-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    text-align: center;
}

@keyframes topBarScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.site-header.has-top-bar .navbar.fixed-top {
    top: var(--top-bar-height, 38px);
}

.site-header .navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
}

/* Anasayfa: şeffaf menü + kaydırınca canlı dolgu */
.site-header.header-transparent-mode .navbar {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.site-header.header-transparent-mode .navbar.scrolled,
.site-header.header-transparent-mode .navbar.menu-open {
    background: rgba(26, 26, 26, 0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

.site-header:not(.header-transparent-mode) .navbar.scrolled {
    background: rgba(18, 18, 18, 0.98);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar-brand .brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.navbar-brand .site-logo {
    height: var(--site-logo-height, 50px);
    max-height: var(--site-logo-height, 50px);
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.navbar-brand em { color: var(--primary); }

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}

.nav-link:hover { color: var(--accent) !important; }

.btn-reserve {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

.btn-reserve:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.reserve-dropdown-wrap .dropdown-toggle::after {
    margin-left: 0.45rem;
}

.reserve-dropdown {
    min-width: 260px;
    padding: 0.5rem;
    border: none;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.reserve-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    border-radius: 8px;
}

.reserve-dropdown .dropdown-item i {
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.reserve-dropdown .dropdown-item span {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.reserve-dropdown .dropdown-item strong {
    font-size: 0.92rem;
}

.reserve-dropdown .dropdown-item small {
    color: var(--text-light);
    font-size: 0.78rem;
}

.reserve-dropdown .dropdown-item:hover {
    background: rgba(196, 30, 58, 0.08);
}

@media (max-width: 991.98px) {
    .reserve-dropdown-wrap {
        width: 100%;
        margin-top: 0.5rem;
    }

    .reserve-dropdown-wrap .btn-reserve {
        width: 100%;
    }

    .reserve-dropdown {
        width: 100%;
    }
}

.navbar-toggler { border-color: rgba(255,255,255,0.3); }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header-social-nav {
    gap: 0.35rem !important;
}

.header-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

.header-social-link .social-icon,
.social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.header-social-link .social-icon svg,
.social-links .social-icon svg {
    width: 1em;
    height: 1em;
    display: block;
}

@media (max-width: 991.98px) {
    .header-social-nav {
        margin: 0.75rem 0;
        padding: 0.25rem 0;
    }
}

/* Hero */
.hero-section { margin-top: -80px; }
body.has-top-bar .hero-section { margin-top: calc(-80px - var(--top-bar-height, 38px)); }

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    min-height: 100vh;
}

.hero-slide, .hero-default {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide-image-only {
    align-items: stretch;
}

.hero-slide-has-video {
    background: #000 !important;
    overflow: hidden;
}

.hero-slide-has-video .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    background: #000;
}

.hero-slide-has-video .hero-overlay {
    z-index: 1;
}

.hero-slide-video-only .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.15));
}

.hero-slide-image-only .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.2));
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--secondary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-actions .btn { margin: 0.5rem; border-radius: 50px; padding: 0.75rem 2rem; }

@media (max-width: 991px) {
    .hero-slide, .hero-default {
        min-height: clamp(360px, 58vh, 560px);
    }

    .hero-section .carousel,
    .hero-section .carousel-inner,
    .hero-section .carousel-item {
        min-height: clamp(360px, 58vh, 560px);
    }

    .hero-slide-image-only {
        min-height: clamp(280px, 48vh, 440px);
    }

    .hero-content {
        padding: 100px 0 50px;
    }
}

@media (max-width: 576px) {
    .hero-section { margin-top: -70px; }

    .hero-slide, .hero-default {
        min-height: clamp(260px, 42vh, 380px);
        background-position: center top;
    }

    .hero-section .carousel,
    .hero-section .carousel-inner,
    .hero-section .carousel-item {
        min-height: clamp(260px, 42vh, 380px);
    }

    .hero-slide-image-only {
        min-height: clamp(220px, 36vh, 320px);
    }

    .hero-content {
        padding: 88px 0 36px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.92rem;
        margin-bottom: 1.25rem;
        padding: 0 0.5rem;
    }

    .hero-actions .btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Sections */
.section { padding: 80px 0; }
.section-label {
    display: block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* About */
.about-image-grid {
    display: grid;
 grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 400px;
}

.about-img {
    background: linear-gradient(135deg, #3d2317, #1a1a1a);
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.about-img-1 { grid-row: span 2; }

/* Products */
.product-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
}

.product-card:hover { transform: translateY(-5px); }

.product-image, .product-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #3d2317, #2d1810);
    background-size: cover;
    background-position: center;
}

.product-body { padding: 1.5rem; position: relative; }

.badge-featured {
    background: var(--accent);
    color: var(--secondary);
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-price {
    display: block;
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* Campaign */
.campaign-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 3rem;
    border-radius: 16px;
}

.campaign-tag {
    background: var(--accent);
    color: var(--secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Month Campaign */
.month-campaign-section {
    background: linear-gradient(180deg, #fff 0%, #faf7f4 100%);
}

.month-campaign-card {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.month-campaign-media {
    position: relative;
    min-height: 360px;
    background: #1a1a1a;
}

.month-campaign-media.has-video {
    background: #000;
}

.month-campaign-image,
.month-campaign-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.month-campaign-placeholder {
    background: linear-gradient(135deg, #2d1810, #1a1a1a);
}

.month-campaign-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.month-campaign-content {
    padding: clamp(2rem, 4vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.month-campaign-tag {
    display: inline-block;
    align-self: flex-start;
    background: var(--primary);
    color: #fff;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.month-campaign-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.month-campaign-text {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.month-campaign-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.month-campaign-btn {
    align-self: flex-start;
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
}

@media (max-width: 991px) {
    .month-campaign-card {
        grid-template-columns: 1fr;
    }

    .month-campaign-media {
        min-height: 280px;
    }

    .month-campaign-content {
        padding: 2rem 1.5rem 2.5rem;
    }
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
}

.stars { color: var(--accent); margin-bottom: 1rem; font-size: 1.1rem; }

/* Blog */
.blog-listing-section {
    background: linear-gradient(180deg, #faf8f5 0%, #fff 100%);
}

.blog-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    height: 100%;
    transition: transform 0.3s;
}

.blog-card--premium {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(20, 20, 20, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card--premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(20, 20, 20, 0.12);
}

.blog-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.blog-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #3d2317, #1a1a1a);
}

.blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card--premium:hover .blog-card__image {
    transform: scale(1.06);
}

.blog-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3d2317, #1a1a1a);
}

.blog-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 55%);
    opacity: 0.85;
    transition: opacity 0.35s ease;
}

.blog-card--premium:hover .blog-card__overlay {
    opacity: 1;
}

.blog-card__category {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 2;
    background: rgba(255,255,255,0.92);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.blog-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.35rem 1.4rem 1.5rem;
    flex: 1;
}

.blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    font-size: 0.82rem;
    color: var(--text-light);
}

.blog-card__meta i {
    color: var(--primary);
    margin-right: 0.25rem;
}

.blog-card__title {
    font-size: 1.2rem;
    line-height: 1.35;
    margin: 0;
    color: var(--secondary);
    transition: color 0.25s ease;
}

.blog-card--premium:hover .blog-card__title {
    color: var(--primary);
}

.blog-card__excerpt {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.blog-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.92rem;
}

.blog-card__cta i {
    transition: transform 0.25s ease;
}

.blog-card--premium:hover .blog-card__cta i {
    transform: translateX(4px);
}

.blog-empty-state {
    text-align: center;
    padding: 4rem 1.5rem;
    background: #fff;
    border-radius: 18px;
    border: 1px dashed rgba(0,0,0,0.12);
}

.blog-empty-state i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #3d2317, #1a1a1a);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-body { padding: 1.5rem; }
.blog-body time { font-size: 0.85rem; color: var(--text-light); }
.blog-body h5 a { color: var(--text); text-decoration: none; }
.blog-body h5 a:hover { color: var(--primary); }

.blog-detail-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    max-width: 900px;
    line-height: 1.2;
}

.blog-detail-hero__lead {
    max-width: 760px;
    color: rgba(255,255,255,0.75);
    margin-top: 0.75rem;
    margin-bottom: 0;
    line-height: 1.7;
}

.blog-detail-section {
    padding-top: 2.5rem;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.15fr);
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: start;
}

.blog-detail-aside {
    position: sticky;
    top: 96px;
}

.blog-detail-visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.14);
    margin-bottom: 1.25rem;
}

.blog-detail-cover {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.blog-detail-sidecard {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.blog-detail-main {
    min-width: 0;
}

.blog-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    z-index: 1080;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    transition: width 0.15s linear;
}

.blog-detail-card {
    background: #fff;
    border-radius: 18px;
    padding: clamp(1.1rem, 2.6vw, 2rem);
    box-shadow: 0 18px 60px rgba(20, 20, 20, 0.08);
}

.blog-cover-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.4rem;
}

.blog-cover-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0,0,0,0.28), rgba(0,0,0,0.03));
}

.blog-cover {
    width: 100%;
    max-height: min(54vh, 560px);
    object-fit: cover;
    display: block;
    transform: scale(1.01);
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.blog-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    background: rgba(26,26,26,0.06);
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
}

.blog-share {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.blog-share__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.blog-share__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.blog-share__btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.blog-share__btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.blog-detail-footer {
    margin-top: 1.5rem;
}

.prose-enhanced {
    font-size: clamp(1rem, 1.05vw, 1.12rem);
    line-height: 1.9;
    color: #2d3035;
}

.prose-enhanced p,
.prose-enhanced ul,
.prose-enhanced ol,
.prose-enhanced blockquote {
    margin-bottom: 1.15rem;
}

.prose-enhanced h2,
.prose-enhanced h3,
.prose-enhanced h4 {
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: #16181c;
}

.prose-enhanced a {
    color: var(--primary);
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.prose-enhanced blockquote {
    border-left: 4px solid var(--primary);
    background: rgba(196, 30, 58, 0.05);
    padding: 1rem 1rem 1rem 1.1rem;
    border-radius: 10px;
}

.prose-enhanced img {
    max-width: 100%;
    border-radius: 14px;
}

.reveal-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 991px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-detail-aside {
        position: static;
    }

    .blog-detail-cover {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 768px) {
    .blog-detail-card {
        border-radius: 14px;
        padding: 1rem;
    }

    .blog-listing-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a, #3d2317);
    padding: 80px 0;
}

/* Contact Map */
.contact-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.contact-info-box {
    background: var(--secondary);
    color: #fff;
    padding: 3rem;
}

.contact-list { list-style: none; padding: 0; }
.contact-list li { padding: 0.5rem 0; }
.contact-list i { color: var(--accent); margin-right: 0.75rem; }

.map-box iframe { width: 100%; height: 100%; min-height: 350px; border: 0; }

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a, #3d2317);
    color: #fff;
    padding: 60px 0 40px;
    margin-top: -80px;
    padding-top: 140px;
}

body.has-top-bar .page-hero {
    margin-top: calc(-80px - var(--top-bar-height, 38px));
}

.page-hero h1 { font-size: 2.5rem; }
.page-hero-lead {
    max-width: 680px;
    color: rgba(255,255,255,0.75);
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}
.page-hero-compact {
    padding-bottom: 28px;
    padding-top: 120px;
}
.breadcrumb-item a { color: var(--accent); text-decoration: none; }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }

.menu-external-section {
    padding: 0;
    background: #fff;
}

.menu-external-frame {
    display: block;
    width: 100%;
    min-height: calc(100vh - 220px);
    border: 0;
    background: #fff;
}

/* Menu */
.menu-tabs .nav-link {
    color: var(--text) !important;
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    margin: 0.25rem;
}

.menu-tabs .nav-link.active {
    background: var(--primary);
    color: #fff !important;
}

.menu-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    height: 100%;
}

.menu-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    background-size: cover;
    flex-shrink: 0;
}

.menu-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

.menu-desc { color: var(--text-light); font-size: 0.9rem; margin: 0.5rem 0; }

/* Forms */
.form-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.15);
}

/* Info Cards */
.info-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    height: 100%;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Gallery */
.gallery-item {
    height: 250px;
    background: linear-gradient(135deg, #3d2317, #1a1a1a);
    background-size: cover;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Footer */
.site-footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.88);
    padding: 0 0 30px;
}

.footer-newsletter {
    background: rgba(0, 0, 0, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem 0;
    margin-bottom: 2.5rem;
}

.newsletter-form .form-control {
    border: 0;
    min-height: 46px;
}

.newsletter-form .btn {
    min-height: 46px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
}

.footer-about {
    color: rgba(255, 255, 255, 0.78) !important;
    line-height: 1.7;
    margin: 0.85rem 0 1.25rem;
    max-width: 28rem;
}

.footer-heading {
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { padding: 0.3rem 0; }
.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--accent); }

.footer-contact li {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    padding: 0.35rem 0;
    color: rgba(255, 255, 255, 0.78);
}

.footer-contact i {
    color: var(--accent);
    margin-top: 0.15rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    margin-right: 0;
    transition: background 0.2s, transform 0.2s;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.site-footer hr { border-color: rgba(255, 255, 255, 0.12); }

.footer-copy,
.footer-qr-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.footer-credit {
    display: inline;
    margin-left: 0.35rem;
    font-size: 0.85em;
    opacity: 0.9;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 168, 83, 0.45);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-credit a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.footer-qr-link:hover { color: var(--accent); }

.footer-bottom .text-muted {
    color: rgba(255, 255, 255, 0.65) !important;
}

/* Home Product Showcase */
.home-showcase-section {
    background: #fff;
    padding: 4rem 0;
}

.showcase-header {
    margin-bottom: 2.5rem;
}

.showcase-label {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.showcase-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1.2;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.showcase-tab {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 90px;
    transition: transform 0.2s;
}

.showcase-tab:hover {
    transform: translateY(-2px);
}

.showcase-tab-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--primary);
    font-size: 1.75rem;
    overflow: hidden;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.showcase-tab-icon img {
    width: 55%;
    height: 55%;
    object-fit: contain;
}

.showcase-tab-icon.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-tab-icon-all {
    background: #fff;
}

.showcase-tab.active .showcase-tab-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.18);
}

.showcase-tab.active .showcase-tab-icon:not(.has-image) img {
    filter: brightness(0) invert(1);
}

.showcase-tab.active .showcase-tab-icon.has-image {
    background: #fff;
    border-width: 3px;
}

.showcase-tab.active .showcase-tab-icon.has-image img {
    filter: none;
}

.showcase-tab-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #222;
    text-align: center;
    line-height: 1.3;
    max-width: 110px;
}

.showcase-tab.active .showcase-tab-label {
    color: var(--primary);
}

.showcase-panel {
    display: none;
}

.showcase-panel.active {
    display: block;
}

.showcase-grid {
    max-width: 900px;
    margin: 0 auto;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 1.25rem 0;
    border-bottom: 2px dotted #ddd;
}

.showcase-row:last-child {
    border-bottom: none;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.showcase-item-empty {
    visibility: hidden;
}

.showcase-item-image {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-item-placeholder {
    color: #ccc;
    font-size: 1.5rem;
}

.showcase-item-name {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #111;
}

.showcase-footer {
    margin-top: 2.5rem;
}

.showcase-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: background 0.2s, transform 0.2s;
}

.showcase-btn:hover {
    background: #a01830;
    color: #fff;
    transform: translateY(-1px);
}

/* FAQ */
.faq-section {
    background:
        radial-gradient(circle at top right, rgba(196, 30, 58, 0.08), transparent 28%),
        linear-gradient(180deg, #faf8f5 0%, #fff 100%);
}

.faq-shell {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 96px;
}

.faq-intro__text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 360px;
}

.faq-accordion--premium .accordion-item,
.faq-accordion .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0.9rem;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0,0,0,0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-accordion--premium .accordion-item:hover,
.faq-accordion .accordion-item:hover {
    box-shadow: 0 16px 34px rgba(0,0,0,0.08);
}

.faq-accordion--premium .accordion-button,
.faq-accordion .accordion-button {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    width: 100%;
    font-weight: 700;
    color: var(--secondary);
    background: #fff;
    padding: 1.15rem 1.25rem;
    box-shadow: none;
}

.faq-item__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(196, 30, 58, 0.08);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 800;
}

.faq-item__question {
    text-align: left;
    line-height: 1.45;
}

.faq-item__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(26,26,26,0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease;
}

.faq-accordion--premium .accordion-button:not(.collapsed) .faq-item__icon,
.faq-accordion .accordion-button:not(.collapsed) .faq-item__icon {
    transform: rotate(45deg);
    background: rgba(196, 30, 58, 0.12);
    color: var(--primary);
}

.faq-accordion--premium .accordion-button:not(.collapsed),
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(196, 30, 58, 0.05);
    box-shadow: none;
}

.faq-accordion--premium .accordion-button::after,
.faq-accordion .accordion-button::after {
    display: none;
}

.faq-accordion--premium .accordion-body,
.faq-accordion .accordion-body {
    color: var(--text);
    line-height: 1.85;
    padding: 0 1.25rem 1.25rem 5.1rem;
}

.faq-item__answer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1rem;
}

@media (max-width: 991px) {
    .faq-shell {
        grid-template-columns: 1fr;
    }

    .faq-intro {
        position: static;
        text-align: center;
    }

    .faq-intro__text {
        max-width: none;
    }

    .faq-accordion--premium .accordion-body,
    .faq-accordion .accordion-body {
        padding-left: 1.25rem;
    }
}

@media (max-width: 768px) {
    .showcase-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem 0.75rem;
        justify-items: center;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }

    .showcase-tab {
        min-width: 0;
        width: 100%;
    }

    .showcase-tab-label {
        max-width: 140px;
        font-size: 0.65rem;
    }

    .showcase-tab-icon {
        width: 60px;
        height: 60px;
    }

    .showcase-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .showcase-item-empty {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-image-grid { height: 300px; }
    .campaign-banner { padding: 2rem; text-align: center; }
    .campaign-banner .text-lg-end { text-align: center !important; margin-top: 1rem; }
}

/* Site splash loader */
body.splash-active {
    overflow: hidden;
}

.site-splash {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.site-splash.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-splash-inner {
    text-align: center;
    padding: 2rem;
}

.site-splash-logo {
    height: calc(var(--site-logo-height, 50px) * 1.6);
    max-height: 96px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    margin-bottom: 1.25rem;
    animation: splashLogoIn 0.8s ease both;
}

.site-splash-logo-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    animation: splashLogoIn 0.8s ease both;
}

.site-splash-logo-text em {
    color: var(--primary);
}

.site-splash-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.12em;
    margin: 0 0 1.25rem;
    text-transform: uppercase;
}

.site-splash-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(12px);
    animation: splashCharIn 0.45s ease forwards;
    animation-delay: calc(0.35s + var(--char-delay, 0s));
}

.site-splash-bar {
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    margin: 0 auto;
    overflow: hidden;
}

.site-splash-bar span {
    display: block;
    height: 100%;
    width: 40%;
    background: var(--primary);
    border-radius: inherit;
    animation: splashBar 1.1s ease-in-out infinite;
}

@keyframes splashLogoIn {
    from { opacity: 0; transform: scale(0.88); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes splashCharIn {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes splashBar {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(320%); }
}

/* Products page — story / showcase */
.products-story-hero {
    position: relative;
    min-height: min(78vh, 720px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #120e0c;
    color: #fff;
    margin-top: -80px;
    padding-top: 80px;
}

body.has-top-bar .products-story-hero {
    margin-top: calc(-80px - var(--top-bar-height, 38px));
    padding-top: calc(80px + var(--top-bar-height, 38px));
}

.products-story-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 70% 40%, rgba(196, 30, 58, 0.28), transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(212, 168, 83, 0.18), transparent 55%),
        linear-gradient(160deg, #1c1410 0%, #0d0a08 55%, #1a1010 100%);
}

.products-story-hero__glow {
    position: absolute;
    width: 55%;
    height: 70%;
    right: -8%;
    top: 10%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.22), transparent 70%);
    filter: blur(40px);
    animation: productsGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.products-story-hero__content {
    position: relative;
    z-index: 2;
    padding: 4.5rem 0 5rem;
    max-width: 760px;
}

.products-story-brand {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 0 0 0.75rem;
    line-height: 1;
    animation: productsRise 0.9s ease both;
}

.products-story-title {
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: productsRise 0.9s ease 0.12s both;
}

.products-story-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 34rem;
    margin: 0 0 1.75rem;
    animation: productsRise 0.9s ease 0.22s both;
}

.products-story-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(212, 168, 83, 0.45);
    padding-bottom: 0.25rem;
    animation: productsRise 0.9s ease 0.32s both;
    transition: color 0.2s, border-color 0.2s;
}

.products-story-cta:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.products-manifesto {
    padding: 4.5rem 0;
    background:
        linear-gradient(180deg, #f7f3ee 0%, #fff 100%);
}

.products-manifesto__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.products-manifesto__title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 1.25rem;
}

.products-manifesto__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.products-spotlight,
.products-collection {
    padding: 4.5rem 0;
}

.products-spotlight {
    background: #161210;
    color: #fff;
}

.products-section-head {
    text-align: center;
    margin-bottom: 2.75rem;
}

.products-section-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.products-spotlight .products-section-title {
    color: #fff;
}

.products-section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 0;
}

.products-spotlight-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.products-spotlight-card {
    animation: productsRise 0.7s ease both;
    animation-delay: var(--delay, 0ms);
}

.products-spotlight-card__media {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.products-spotlight-card__media.is-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #2a1c18, #1a1210);
    color: var(--accent);
    font-size: 2rem;
}

.products-spotlight-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 50%);
}

.products-spotlight-card__badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--primary);
    color: #fff;
    padding: 0.3rem 0.55rem;
    font-weight: 600;
}

.products-spotlight-card__body {
    padding: 1.1rem 0.15rem 0;
}

.products-spotlight-card__body h3 {
    font-size: 1.15rem;
    margin: 0 0 0.4rem;
    letter-spacing: 0.03em;
}

.products-spotlight-card__body p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.55;
}

.products-collection {
    background:
        linear-gradient(180deg, #fff 0%, #f8f4ef 40%, #fff 100%);
}

.products-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 1.5rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 1rem;
}

.products-filter__btn {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.35rem 0;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}

.products-filter__btn::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1rem;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.products-filter__btn:hover {
    color: var(--secondary);
}

.products-filter__btn.is-active {
    color: var(--primary);
}

.products-filter__btn.is-active::after {
    transform: scaleX(1);
}

.products-panel {
    display: none;
}

.products-panel.is-active {
    display: block;
    animation: productsFade 0.45s ease;
}

.products-panel__desc {
    text-align: center;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.products-gallery {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.products-feature {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
}

.products-feature--reverse {
    grid-template-columns: 0.85fr 1.15fr;
}

.products-feature--reverse .products-feature__visual {
    order: 2;
}

.products-feature--reverse .products-feature__copy {
    order: 1;
}

.products-feature__visual {
    position: relative;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    background-color: #1a1210;
}

.products-feature__visual.is-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 2.5rem;
    background: linear-gradient(145deg, #2a1c18, #15100e);
}

.products-feature__mark {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: #1a1a1a;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
}

.products-feature__copy {
    padding: 0.5rem 0;
}

.products-feature__index {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: rgba(196, 30, 58, 0.25);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.products-feature__name {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    margin: 0 0 1rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.products-feature__text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0;
}

.products-empty {
    text-align: center;
    color: var(--text-light);
    padding: 3rem 1rem;
}

.products-closing {
    margin-top: 4rem;
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.products-invite {
    padding: 5rem 0;
    background:
        radial-gradient(ellipse at center, rgba(196, 30, 58, 0.18), transparent 55%),
        linear-gradient(160deg, #1a1210, #0f0c0a);
    color: #fff;
}

.products-invite__title {
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 0.75rem;
}

.products-invite__text {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.75rem;
}

@keyframes productsRise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes productsFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes productsGlow {
    from { opacity: 0.55; transform: translateY(0) scale(1); }
    to { opacity: 1; transform: translateY(-12px) scale(1.05); }
}

@media (max-width: 1100px) {
    .products-spotlight-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .products-story-hero {
        min-height: 68vh;
        align-items: center;
    }

    .products-story-hero__content {
        padding: 3.5rem 0 3.5rem;
        text-align: center;
        margin: 0 auto;
    }

    .products-story-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .products-spotlight-track {
        grid-template-columns: 1fr;
    }

    .products-spotlight-card__media {
        height: 240px;
    }

    .products-feature,
    .products-feature--reverse {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .products-feature--reverse .products-feature__visual,
    .products-feature--reverse .products-feature__copy {
        order: initial;
    }

    .products-feature__visual {
        min-height: 260px;
    }

    .products-filter {
        gap: 0.5rem 1rem;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.85rem;
    }

    .products-filter__btn {
        white-space: nowrap;
    }

    .products-filter__btn::after {
        bottom: -0.85rem;
    }
}

/* Legacy products classes kept for safety */
.products-hero .lead {
    max-width: 640px;
}

/* Content blocks */
.content-block {
    margin: 2rem 0;
}

.content-block__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1rem;
}

.content-block__subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.content-block__body {
    line-height: 1.75;
    color: var(--text);
}

.content-block--cta {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(160deg, #1a1210, #120e0c);
    color: #fff;
}

.content-block--cta .content-block__title {
    color: #fff;
}

.content-block--cta .content-block__body {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.25rem;
}

.content-block--hero {
    padding: 2rem 0;
}

.content-block__btn {
    margin-top: 0.5rem;
}

