/* Storefront Theme Stylesheet - Luxury Minimalism */
:root {
    --primary: #4E5E4E; /* Deep Sage Green */
    --secondary: #8E7A5A; /* Linen Ochre */
    --accent: #E0A96D; /* Sandy Gold */
    --dark: #2D2D2D; /* Charcoal */
    --header-bg: #3F3A34;
    --header-text: #F3EBDD;
    --bg-light: #FAF8F5; /* Warm Linen */
    --white: #ffffff;
    --border-color: #EAE6DF;
    --text-muted: #7E7870;
    --font-serif: 'Urbanist', 'Plus Jakarta Sans', sans-serif;
    --font-sans: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --max-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 4px;
    --home-linen-surface: #f8f5ef;
}

/* Premium Editorial Homepage */
.hero-slider {
    height: clamp(520px, 66vw, 640px);
    background: #d9d2c6;
}

.slide-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
}

.slide::before {
    z-index: 1;
    background: linear-gradient(90deg, rgba(27, 30, 26, 0.72) 0%, rgba(27, 30, 26, 0.43) 42%, rgba(27, 30, 26, 0.08) 74%);
}

.slide-content {
    z-index: 2;
    max-width: var(--max-width);
    width: 100%;
}

.slide-content > * {
    max-width: 570px;
}

.slide-kicker,
.home-section-kicker {
    display: block;
    margin-bottom: 14px;
    color: var(--secondary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.1px;
    line-height: 1.3;
    text-transform: uppercase;
}

.slide-kicker {
    color: rgba(255, 255, 255, 0.82);
}

.slide-content h2 {
    font-size: clamp(42px, 5vw, 68px);
    letter-spacing: -1.5px;
    line-height: 1.04;
    text-wrap: balance;
}

.slide-content p {
    max-width: 530px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.75;
}

.hero-slider .btn-primary {
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(143, 123, 90, 0.9);
    backdrop-filter: blur(10px);
    font-size: 12px;
}

.slider-arrow {
    width: 42px;
    height: 42px;
}

.slider-dot {
    padding: 0;
    border: 0;
}

.features-bar {
    margin: 0;
    padding: 24px 0;
    background: #fffdf9;
}

.features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.feature-item {
    position: relative;
    padding: 2px 24px;
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: var(--border-color);
}

.feature-item i {
    margin-bottom: 7px;
    font-size: 23px;
}

.feature-item img {
    height: 23px;
    max-width: 66px;
    margin-bottom: 7px;
}

.feature-item h5 {
    margin-bottom: 2px;
    font-size: 13px;
}

.feature-item p {
    font-size: 11px;
    line-height: 1.55;
}

.home-section {
    padding-top: 96px;
}

.home-section-heading {
    margin-bottom: 36px;
    text-align: center;
}

.home-section-heading .home-section-kicker {
    margin-bottom: 8px;
}

.home-section-heading .section-title {
    margin: 0;
}

.section-title {
    font-size: clamp(28px, 3vw, 38px);
    letter-spacing: -0.7px;
}

.section-title::after {
    width: 42px;
    height: 2px;
}

.category-grid--editorial {
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-template-rows: repeat(2, 245px);
    gap: 18px;
    margin-bottom: 0;
}

.category-grid--editorial .category-card {
    position: relative;
    display: block;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 10px;
    background: #e8e3da;
    text-align: left;
}

.category-grid--editorial .category-card--1 {
    grid-row: 1 / span 2;
}

.category-grid--editorial .category-card--2 {
    grid-column: 2 / span 2;
}

.category-grid--editorial .category-card-image,
.category-grid--editorial .category-card-icon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
}

.category-grid--editorial .category-card-image img {
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.category-grid--editorial .category-card::after {
    content: '';
    position: absolute;
    inset: 32% 0 0;
    background: linear-gradient(180deg, transparent, rgba(24, 27, 23, 0.73));
    pointer-events: none;
}

.category-grid--editorial .category-card:hover {
    transform: none;
    box-shadow: none;
}

.category-grid--editorial .category-card:hover img {
    transform: scale(1.035);
}

.category-card-copy {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 21px;
    left: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    color: #fff;
}

.category-grid--editorial .category-card h4 {
    display: block;
    width: auto;
    min-height: 0;
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(19px, 2vw, 27px);
    text-align: left;
}

.category-card-copy > span {
    flex-shrink: 0;
    padding-bottom: 3px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.home-promo-wrap {
    padding-top: 78px;
}

.home-promo-strip {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
    min-height: 126px;
    padding: 28px 34px;
    overflow: hidden;
    border: 1px solid rgba(220, 193, 145, 0.34);
    border-radius: 10px;
    background:
        radial-gradient(circle at 12% 25%, rgba(196, 164, 108, 0.18), transparent 28%),
        linear-gradient(112deg, #24362d 0%, #30483a 48%, #1f3028 100%);
    box-shadow:
        0 24px 58px rgba(31, 48, 40, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    isolation: isolate;
    animation: homePromoReveal 0.72s ease-out both;
}

.home-promo-strip::before {
    position: absolute;
    z-index: 0;
    top: -105px;
    right: 14%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(231, 210, 173, 0.13);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231, 210, 173, 0.1), transparent 66%);
    content: "";
    animation: homePromoAmbientGlow 7s ease-in-out infinite alternate;
}

.home-promo-strip::after {
    position: absolute;
    z-index: 0;
    top: -80%;
    left: -22%;
    width: 18%;
    height: 260%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
    content: "";
    pointer-events: none;
    transform: rotate(18deg);
    animation: homePromoShine 6.5s ease-in-out 1.2s infinite;
}

.home-promo-strip > * {
    position: relative;
    z-index: 1;
}

.home-promo-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: #fff8eb;
    background: linear-gradient(145deg, #b99a67, #8f744c);
    box-shadow:
        0 12px 28px rgba(10, 20, 15, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: homePromoGiftFloat 3.6s ease-in-out infinite;
}

.home-promo-icon i {
    font-size: 20px;
    filter: drop-shadow(0 3px 5px rgba(31, 48, 40, 0.28));
}

.home-promo-copy > span {
    display: block;
    margin-bottom: 7px;
    color: #e7d2ad;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.home-promo-copy__line {
    display: flex;
    align-items: baseline;
    gap: 13px;
    flex-wrap: wrap;
}

.home-promo-copy h3 {
    margin: 0;
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(21px, 2vw, 27px);
    font-weight: 700;
    line-height: 1.1;
}

.home-promo-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.home-text-link i {
    transition: transform 0.25s ease;
}

.home-text-link:hover {
    color: var(--secondary);
}

.home-text-link:hover i {
    transform: translateX(4px);
}

.home-promo-cta {
    position: relative;
    min-height: 46px;
    padding: 0 20px;
    overflow: hidden;
    border: 1px solid rgba(231, 210, 173, 0.55);
    border-radius: 999px;
    color: #fff8eb;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 26px rgba(12, 25, 18, 0.16);
    transition:
        color 0.28s ease,
        background-color 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
}

.home-promo-cta:hover {
    color: #23352b;
    border-color: #e7d2ad;
    background: #e7d2ad;
    box-shadow: 0 15px 32px rgba(12, 25, 18, 0.24);
    transform: translateY(-3px);
}

.home-promo-cta:hover i {
    transform: translateX(5px);
}

@keyframes homePromoReveal {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes homePromoGiftFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(-3deg);
    }
}

@keyframes homePromoAmbientGlow {
    from {
        opacity: 0.45;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes homePromoShine {
    0%,
    62% {
        left: -22%;
        opacity: 0;
    }
    72% {
        opacity: 1;
    }
    100% {
        left: 118%;
        opacity: 0;
    }
}

.home-product-section .product-grid {
    margin-bottom: 0;
}

.home-product-section .product-card {
    border-color: rgba(143, 123, 90, 0.18);
    border-radius: 10px;
    box-shadow: none;
}

.home-product-section .product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(64, 55, 42, 0.07);
}

.home-product-section .product-info {
    padding: 20px 18px 18px;
}

.home-product-section .product-badge {
    padding: 5px 9px;
    background: rgba(78, 94, 78, 0.92);
    font-size: 9px;
    letter-spacing: 0.5px;
}

.home-product-section .product-badge--custom {
    background: rgba(143, 123, 90, 0.94);
}

.home-product-section .product-starting-price {
    min-height: 41px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #fffdf8 0%, #f1eadc 100%);
    box-shadow:
        0 8px 18px rgba(61, 70, 58, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.home-product-section .product-starting-price:hover {
    background: linear-gradient(135deg, #536754, #3e5141);
    box-shadow: 0 13px 26px rgba(52, 68, 54, 0.22);
}

.home-brand-story {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    align-items: center;
    gap: clamp(38px, 6vw, 82px);
}

.home-brand-story__media {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.home-brand-story__media::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: inherit;
    pointer-events: none;
}

.home-brand-story__media img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.home-brand-story__copy h3 {
    margin-bottom: 22px;
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: clamp(30px, 3.5vw, 46px);
    letter-spacing: -1px;
    line-height: 1.12;
}

.home-brand-story__copy p {
    margin-bottom: 26px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.9;
}

.home-brand-story__facts {
    display: flex;
    gap: 26px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.home-brand-story__facts span {
    color: var(--text-muted);
    font-size: 11px;
}

.home-brand-story__facts strong {
    display: block;
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: 17px;
}

.home-services {
    margin-top: 62px;
}

.home-services__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.home-service-card {
    display: grid;
    grid-template-columns: minmax(140px, .74fr) minmax(0, 1.26fr);
    height: 230px;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(143, 123, 90, .16);
    border-radius: 12px;
    background: linear-gradient(145deg, #fff 0%, #faf7f2 100%);
    box-shadow: 0 16px 38px rgba(39, 47, 41, .08);
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), border-color .3s ease, box-shadow .35s ease;
}

.home-service-card:hover {
    border-color: rgba(143, 123, 90, .32);
    box-shadow: 0 24px 48px rgba(39, 47, 41, .13);
    transform: translateY(-6px);
}

.home-service-card__media {
    position: relative;
    height: 230px;
    min-height: 0;
    overflow: hidden;
    background: #e9e5dd;
}

.home-service-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 62%, rgba(24, 38, 30, .14));
    pointer-events: none;
}

.home-service-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .75, .2, 1), filter .5s ease;
}

.home-service-card:hover .home-service-card__media img {
    filter: saturate(1.06);
    transform: scale(1.065);
}

.home-service-card__media > span {
    position: absolute;
    z-index: 2;
    right: 11px;
    bottom: 11px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 50%;
    color: #fff;
    background: rgba(47, 68, 55, .78);
    box-shadow: 0 8px 20px rgba(19, 30, 23, .24);
    font-size: 12px;
    backdrop-filter: blur(8px);
}

.home-service-card__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 22px 23px;
}

.home-service-card__copy > small {
    margin-bottom: 7px;
    color: #9a7f52;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.home-service-card h4 {
    margin-bottom: 7px;
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: clamp(17px, 1.3vw, 21px);
    line-height: 1.2;
}

.home-service-card p {
    margin-bottom: 12px;
    color: var(--text-muted);
    display: -webkit-box;
    overflow: hidden;
    font-size: 10.5px;
    line-height: 1.62;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.home-service-card .home-text-link {
    margin-top: auto;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(66, 88, 72, .24);
    font-size: 8px;
}

.home-service-card .home-text-link i {
    transition: transform .25s ease;
}

.home-service-card:hover .home-text-link i {
    transform: translateX(5px);
}

.home-corporate-banner {
    margin-top: 32px;
    margin-bottom: 90px;
}

.home-corporate-banner__inner {
    position: relative;
    width: 100%;
    padding: 29px 40px;
    overflow: hidden;
    border-radius: 10px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(55, 62, 52, 0.98), rgba(55, 62, 52, 0.83)),
        var(--corporate-image) center / cover;
}

.home-corporate-banner__inner h3 {
    margin-bottom: 7px;
    font-family: var(--font-serif);
    font-size: clamp(23px, 2.4vw, 31px);
    line-height: 1.15;
}

.home-corporate-banner__inner p {
    max-width: 580px;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    line-height: 1.55;
}

.home-corporate-banner__inner .home-section-kicker {
    margin-bottom: 8px;
    color: #d8c5a4;
    font-size: 8px;
}

.home-corporate-banner__inner .home-text-link {
    margin-top: 10px;
    color: #fff;
    font-size: 9px;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 0;
    }

    .feature-item:nth-child(2)::after {
        display: none;
    }

    .category-grid--editorial {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 330px 220px;
    }

    .category-grid--editorial .category-card--1 {
        grid-row: auto;
    }

    .category-grid--editorial .category-card--2 {
        grid-column: auto;
    }

    .home-brand-story {
        grid-template-columns: 1fr;
    }

    .home-brand-story__copy {
        max-width: 650px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 560px;
    }

    .slide-media {
        object-position: 62% center;
    }

    .slide::before {
        background: linear-gradient(180deg, rgba(26, 29, 25, 0.23) 0%, rgba(26, 29, 25, 0.74) 82%);
    }

    .slide {
        align-items: flex-end;
        padding-bottom: 72px;
    }

    .slide-content h2 {
        font-size: 38px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .slider-arrow {
        top: auto;
        bottom: 19px;
        width: 36px;
        height: 36px;
        transform: none;
    }

    .prev-arrow {
        left: 18px;
    }

    .next-arrow {
        right: 18px;
    }

    .features-bar {
        padding: 20px 0;
    }

    .feature-item {
        padding: 0 12px;
    }

    .feature-item p {
        display: none;
    }

    .home-section {
        padding-top: 72px;
    }

    .category-grid--editorial {
        grid-template-rows: repeat(2, 200px);
        gap: 10px;
    }

    .category-card-copy {
        right: 15px;
        bottom: 14px;
        left: 15px;
    }

    .category-card-copy > span {
        display: none;
    }

    .category-grid--editorial .category-card h4 {
        font-size: 17px;
    }

    .home-promo-wrap {
        padding-top: 58px;
    }

    .home-promo-strip {
        grid-template-columns: auto 1fr;
        gap: 14px;
        padding: 20px;
    }

    .home-promo-strip > .home-text-link {
        grid-column: 2;
    }

    .home-promo-copy h3,
    .home-promo-copy p {
        display: block;
    }

    .home-brand-story {
        gap: 32px;
    }

    .home-brand-story__media img {
        aspect-ratio: 4 / 3;
    }

    .home-brand-story__facts {
        gap: 16px;
    }

    .home-services {
        margin-top: 52px;
    }

    .home-services__grid {
        grid-template-columns: 1fr;
    }

    .home-corporate-banner__inner {
        padding: 27px 24px;
    }
}

@media (max-width: 560px) {
    .home-service-card {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }

    .home-service-card__media {
        height: 165px;
        min-height: 165px;
        aspect-ratio: 16 / 10;
    }

    .home-service-card__copy {
        min-height: 174px;
        padding: 20px;
    }
}

@font-face {
    font-family: 'Caviar Dreams';
    src: url('/assets/fonts/CaviarDreams.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--dark);
    line-height: 1.6;
}

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

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

/* Scaffolding Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
    font-weight: 500;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-links {
    display: flex;
    gap: 20px;
}

.top-bar-contact-links {
    gap: 0;
}

.top-bar-contact-links a {
    position: relative;
    padding: 0 18px;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.top-bar-contact-links a:hover {
    opacity: 0.82;
    transform: translateY(-1px);
}

.top-bar-contact-links a:first-child {
    padding-left: 0;
}

.top-bar-contact-links a:last-child {
    padding-right: 0;
}

.top-bar-contact-links a + a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-50%);
}

.top-bar-social {
    display: flex;
    gap: 15px;
}

@media (max-width: 767px) {
    .top-bar-contact-links {
        gap: 10px;
    }

    .top-bar-contact-links a {
        padding: 0;
    }

    .top-bar-contact-links a + a::before {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .top-bar-contact-links a {
        transition: none;
    }

    .top-bar-contact-links a:hover {
        transform: none;
    }
}

/* Sepete ekleme geri bildirimi ve kumaş parçacıkları */
.cart-add-notice {
    position: fixed;
    top: 22px;
    left: 50%;
    z-index: 12050;
    display: flex;
    align-items: center;
    gap: 9px;
    max-width: min(440px, calc(100% - 30px));
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: #3f5f4d;
    box-shadow: 0 16px 38px rgba(28, 45, 36, 0.24);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -16px) scale(0.97);
    transition: opacity 220ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cart-add-notice.is-error {
    background: #974a43;
}

.cart-add-notice.is-visible {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

.cart-add-notice i {
    flex: 0 0 auto;
    font-size: 16px;
}

.cart-fabric-burst {
    position: fixed;
    z-index: 12060;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.cart-fabric-particle {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 26px;
    height: 19px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 5px 8px 5px 8px;
    box-shadow: 0 5px 12px rgba(42, 42, 35, 0.2);
    opacity: 0;
    animation: cartFabricScatter 1750ms cubic-bezier(0.18, 0.72, 0.24, 1) var(--fabric-delay) both;
}

.cart-fabric-particle i {
    color: rgba(255, 255, 255, 0.92);
    font-size: 11px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.18));
}

.cart-fabric-particle--0 {
    background: repeating-linear-gradient(45deg, #8f7b5a 0 5px, #cbb993 5px 9px);
}

.cart-fabric-particle--1 {
    background: radial-gradient(circle at 25% 30%, #e8d7bd 0 2px, transparent 3px), #506858;
    background-size: 9px 9px;
}

.cart-fabric-particle--2 {
    background: repeating-linear-gradient(90deg, #3faea7 0 4px, #78d0c8 4px 7px, #f7e7d1 7px 9px);
}

.cart-fabric-particle--3 {
    background: linear-gradient(135deg, #d9b8a5 25%, #f3dfc6 25% 50%, #a98e70 50% 75%, #f7ede1 75%);
    background-size: 12px 12px;
}

.cart-add-button--success {
    background: #3f7656 !important;
    box-shadow: 0 10px 24px rgba(63, 118, 86, 0.24) !important;
    animation: cartButtonSuccess 460ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

@keyframes cartFabricScatter {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.25) rotate(0deg);
    }
    18% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(calc(-50% + var(--fabric-x)), calc(-50% + var(--fabric-y))) scale(0.95) rotate(var(--fabric-r));
    }
}

@keyframes cartButtonSuccess {
    0% { transform: scale(1); }
    45% { transform: scale(1.025); }
    100% { transform: scale(1); }
}

@media (max-width: 640px) {
    .cart-add-notice {
        top: 14px;
        padding: 11px 15px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cart-add-notice,
    .cart-add-button--success,
    .cart-fabric-particle {
        animation: none;
        transition: none;
    }
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    z-index: 10050;
    left: 50%;
    bottom: 18px;
    width: min(1180px, calc(100% - 36px));
    min-height: 92px;
    padding: 18px 20px;
    border: 1px solid rgba(233, 216, 185, 0.22);
    border-radius: 14px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    color: #fff;
    background: rgba(31, 52, 43, 0.97);
    box-shadow: 0 18px 55px rgba(16, 31, 25, 0.28);
    backdrop-filter: blur(14px);
    opacity: 0;
    transform: translate(-50%, calc(100% + 36px));
    transition: opacity 0.32s ease, transform 0.42s cubic-bezier(.2,.8,.2,1);
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent--visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.cookie-consent__icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(232, 202, 146, 0.3);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #e4c48b;
    background: rgba(255,255,255,0.06);
    font-size: 20px;
}

.cookie-consent__copy strong {
    display: block;
    margin-bottom: 5px;
    color: #f4ead9;
    font-size: 15px;
    letter-spacing: 0.2px;
}

.cookie-consent__copy p {
    max-width: 750px;
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 12px;
    line-height: 1.65;
}

.cookie-consent__copy a {
    margin-left: 4px;
    color: #efd5a5;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-consent__copy a:hover {
    color: #fff;
}

.cookie-consent__actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.cookie-consent__button {
    min-width: 104px;
    min-height: 42px;
    padding: 10px 17px;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.cookie-consent__button:hover {
    transform: translateY(-2px);
}

.cookie-consent__button:focus-visible {
    outline: 2px solid #f1d49f;
    outline-offset: 3px;
}

.cookie-consent__button--reject {
    color: #fff;
    background: transparent;
}

.cookie-consent__button--reject:hover {
    border-color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.08);
}

.cookie-consent__button--accept {
    border-color: #e9cf9f;
    color: #294238;
    background: #f0d9ae;
}

.cookie-consent__button--accept:hover {
    border-color: #f7e7c9;
    background: #f7e7c9;
}

body.cookie-consent-visible .floating-whatsapp {
    bottom: 132px;
}

@media (max-width: 760px) {
    .cookie-consent {
        bottom: 10px;
        width: calc(100% - 20px);
        padding: 17px;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 12px;
    }

    .cookie-consent__icon {
        width: 42px;
        height: 42px;
    }

    .cookie-consent__actions {
        grid-column: 1 / -1;
        width: 100%;
    }

    .cookie-consent__button {
        flex: 1;
    }

    body.cookie-consent-visible .floating-whatsapp {
        bottom: 204px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cookie-consent,
    .cookie-consent__button,
    body.cookie-consent-visible .floating-whatsapp {
        transition: none !important;
    }
}

/* Legal pages */
.legal-page {
    width: min(1120px, calc(100% - 40px));
    margin: 38px auto 90px;
}

.legal-hero {
    position: relative;
    min-height: 310px;
    padding: clamp(48px, 8vw, 82px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 30%, rgba(217, 183, 121, 0.22), transparent 28%),
        linear-gradient(120deg, #213b31, #3e5448);
    box-shadow: 0 24px 56px rgba(32, 55, 45, 0.14);
}

.legal-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -170px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(239, 213, 165, 0.18);
    border-radius: 50%;
}

.legal-hero__content {
    position: relative;
    z-index: 2;
    max-width: 670px;
}

.legal-eyebrow {
    color: #e5c58e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.legal-hero h1 {
    margin: 13px 0 16px;
    color: #fff;
    font-size: clamp(42px, 6vw, 66px);
    line-height: 1;
    letter-spacing: -2px;
}

.legal-hero p {
    max-width: 590px;
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.75;
}

.legal-hero__mark {
    position: relative;
    z-index: 2;
    width: 112px;
    height: 112px;
    border: 1px solid rgba(237, 211, 162, 0.34);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #e6ca99;
    background: rgba(255,255,255,0.04);
    font-size: 38px;
    animation: legalMarkFloat 4.5s ease-in-out infinite;
}

.legal-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 42px;
    margin-top: 42px;
    align-items: start;
}

.legal-summary {
    position: sticky;
    top: 24px;
    padding: 26px;
    border: 1px solid rgba(143, 123, 90, 0.2);
    border-radius: 14px;
    background: #faf7f1;
}

.legal-summary > span {
    display: block;
    color: #9a8158;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.legal-summary > strong {
    display: block;
    margin: 7px 0 18px;
    color: var(--primary);
    font-size: 21px;
}

.legal-summary p {
    margin: 0 0 21px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.7;
}

.legal-preference-button {
    width: 100%;
    padding: 12px 14px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    color: #fff;
    background: var(--primary);
    font: inherit;
    font-size: 11px;
    font-weight: 750;
    transition: transform 0.25s ease, background 0.25s ease;
}

.legal-preference-button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.legal-content {
    padding: 2px 0;
}

.legal-content > section {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    padding: 0 0 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(143, 123, 90, 0.18);
}

.legal-content > section:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.legal-section-number {
    color: #b49b70;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.legal-content h2 {
    margin: -7px 0 12px;
    color: var(--primary);
    font-size: 25px;
}

.legal-content p {
    margin: 0;
    color: #6d675f;
    font-size: 14px;
    line-height: 1.85;
}

.legal-content p a {
    color: var(--secondary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-cookie-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.legal-cookie-list > div {
    padding: 22px;
    border: 1px solid rgba(143, 123, 90, 0.17);
    border-radius: 12px;
    background: #fcfaf6;
}

.legal-cookie-list i {
    margin-bottom: 14px;
    color: #9b8258;
    font-size: 19px;
}

.legal-cookie-list h3 {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 15px;
}

.legal-cookie-list p {
    font-size: 12px;
    line-height: 1.7;
}

@keyframes legalMarkFloat {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

@media (max-width: 760px) {
    .legal-page {
        width: calc(100% - 24px);
        margin-top: 18px;
    }

    .legal-hero {
        min-height: 320px;
        padding: 42px 27px;
        align-items: flex-start;
    }

    .legal-hero__mark {
        position: absolute;
        right: 24px;
        bottom: 24px;
        width: 82px;
        height: 82px;
        font-size: 28px;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 28px;
    }

    .legal-summary {
        position: static;
    }

    .legal-cookie-list {
        grid-template-columns: 1fr;
    }

    .legal-content > section {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .legal-hero__mark {
        animation: none;
    }
}

/* Dropshipping landing page */
.dropship-page {
    width: min(1180px, calc(100% - 40px));
    margin: 38px auto 90px;
}

.dropship-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a28659;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dropship-hero {
    min-height: 620px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    border-radius: 20px;
    background: #f3eee5;
    box-shadow: 0 28px 65px rgba(35, 55, 46, 0.12);
}

.dropship-hero__copy {
    position: relative;
    z-index: 2;
    padding: clamp(54px, 7vw, 88px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dropship-hero h1 {
    margin: 20px 0 24px;
    max-width: 610px;
    color: #294238;
    font-family: var(--font-serif);
    font-size: clamp(47px, 6vw, 76px);
    font-weight: 680;
    line-height: 0.97;
    letter-spacing: -3px;
}

.dropship-hero h1 em {
    color: #9b7f52;
    font-style: normal;
}

.dropship-hero__copy > p {
    max-width: 560px;
    color: #6e675d;
    font-size: 15px;
    line-height: 1.85;
}

.dropship-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 31px;
}

.dropship-button {
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.dropship-button:hover {
    transform: translateY(-3px);
}

.dropship-button--primary {
    color: #fff;
    background: #294238;
}

.dropship-button--primary:hover {
    color: #fff;
    background: #9a7e50;
}

.dropship-button--ghost {
    border-color: rgba(41, 66, 56, 0.3);
    color: #294238;
    background: rgba(255,255,255,0.35);
}

.dropship-button--ghost:hover {
    border-color: #294238;
    color: #294238;
    background: #fff;
}

.dropship-hero__visual {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #294238;
}

.dropship-hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(41,66,56,0.2), transparent 35%);
}

.dropship-hero__image {
    position: absolute;
    overflow: hidden;
    margin: 0;
    border-radius: 11px;
    box-shadow: 0 24px 55px rgba(15, 30, 24, 0.25);
}

.dropship-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(.2,.8,.2,1);
}

.dropship-hero:hover .dropship-hero__image img {
    transform: scale(1.035);
}

.dropship-hero__image--main {
    z-index: 2;
    left: 9%;
    bottom: -4%;
    width: 54%;
    height: 88%;
    transform: rotate(-2deg);
}

.dropship-hero__image--secondary {
    z-index: 1;
    top: -3%;
    right: -2%;
    width: 56%;
    height: 78%;
    transform: rotate(2deg);
    opacity: 0.88;
}

.dropship-floating-note {
    position: absolute;
    z-index: 4;
    padding: 11px 15px;
    border: 1px solid rgba(255,255,255,0.72);
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #294238;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 12px 30px rgba(18, 36, 28, 0.18);
    backdrop-filter: blur(10px);
    font-size: 11px;
    font-weight: 750;
    animation: dropshipFloat 4.6s ease-in-out infinite;
}

.dropship-floating-note strong {
    color: #a3824e;
    font-size: 17px;
}

.dropship-floating-note--stock {
    top: 13%;
    left: 5%;
}

.dropship-floating-note--shipping {
    right: 5%;
    bottom: 9%;
    animation-delay: -2.2s;
}

.dropship-stat-strip {
    position: relative;
    z-index: 3;
    width: calc(100% - 72px);
    min-height: 102px;
    margin: -26px auto 0;
    padding: 19px 26px;
    border: 1px solid rgba(143, 123, 90, 0.18);
    border-radius: 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: rgba(255,255,255,0.96);
    box-shadow: 0 18px 45px rgba(36, 56, 47, 0.1);
}

.dropship-stat-strip > div {
    padding: 5px 22px;
    border-right: 1px solid rgba(143,123,90,0.18);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dropship-stat-strip > div:last-child {
    border-right: 0;
}

.dropship-stat-strip strong {
    color: #294238;
    font-size: 22px;
    line-height: 1.1;
}

.dropship-stat-strip span {
    margin-top: 5px;
    color: #8a8175;
    font-size: 11px;
}

.dropship-success {
    margin: 28px 0 -18px;
    padding: 15px 18px;
    border: 1px solid rgba(56, 139, 94, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #296843;
    background: #eef8f1;
    font-size: 13px;
    font-weight: 650;
}

.dropship-section {
    padding-top: 105px;
}

.dropship-section-heading {
    max-width: 740px;
    margin: 0 auto 42px;
    text-align: center;
}

.dropship-section-heading--compact {
    max-width: 780px;
}

.dropship-section-heading--left {
    margin: 0 0 30px;
    text-align: left;
}

.dropship-section-heading h2 {
    margin: 10px 0 15px;
    color: #294238;
    font-size: clamp(34px, 4.7vw, 52px);
    line-height: 1.05;
    letter-spacing: -1.8px;
}

.dropship-section-heading p {
    margin: 0;
    color: #7a7267;
    font-size: 14px;
    line-height: 1.8;
}

.dropship-process-grid {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 35px;
    align-items: stretch;
}

.dropship-process-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dropship-process-steps li {
    min-height: 106px;
    padding: 20px;
    border: 1px solid rgba(143,123,90,0.18);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    background: #fff;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.dropship-process-steps li:hover {
    border-color: rgba(143,123,90,0.4);
    transform: translateX(6px);
    box-shadow: 0 12px 30px rgba(36, 56, 47, 0.07);
}

.dropship-process-steps li > span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #a2875b;
    background: #f3ede3;
    font-size: 10px;
    font-weight: 800;
}

.dropship-process-steps h3 {
    margin: 1px 0 6px;
    color: #294238;
    font-size: 16px;
}

.dropship-process-steps p {
    margin: 0;
    color: #81796d;
    font-size: 12px;
    line-height: 1.6;
}

.dropship-process-visual {
    position: relative;
    min-height: 455px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 15px;
    cursor: zoom-in;
    background: #d9d9d9;
    box-shadow: 0 20px 50px rgba(34, 54, 45, 0.12);
}

.dropship-process-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dropship-process-visual:hover img {
    transform: scale(1.025);
}

.dropship-process-visual > span,
.dropshipping-price-preview > span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 9px 14px;
    border-radius: 999px;
    color: #fff;
    background: rgba(31, 53, 43, 0.9);
    font-size: 10px;
    font-weight: 750;
    transition: transform 0.25s ease, background 0.25s ease;
}

.dropship-process-visual:hover > span,
.dropshipping-price-preview:hover > span {
    background: #9a7e50;
    transform: translateY(-3px);
}

.dropship-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.dropship-benefit-grid article {
    position: relative;
    min-height: 290px;
    padding: 31px;
    overflow: hidden;
    border: 1px solid rgba(143,123,90,0.18);
    border-radius: 14px;
    background: #faf7f1;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dropship-benefit-grid article:nth-child(2) {
    color: #fff;
    background: #294238;
}

.dropship-benefit-grid article:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(35, 55, 46, 0.12);
}

.dropship-benefit-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #947849;
    background: #eee5d6;
    font-size: 20px;
}

.dropship-benefit-grid article:nth-child(2) .dropship-benefit-icon {
    color: #efd7a9;
    background: rgba(255,255,255,0.08);
}

.dropship-benefit-grid article > small {
    position: absolute;
    top: 31px;
    right: 31px;
    color: rgba(148,120,73,0.45);
    font-size: 11px;
    font-weight: 800;
}

.dropship-benefit-grid article:nth-child(2) > small {
    color: rgba(255,255,255,0.3);
}

.dropship-benefit-grid h3 {
    margin: 35px 0 12px;
    color: #294238;
    font-size: 21px;
    line-height: 1.25;
}

.dropship-benefit-grid article:nth-child(2) h3 {
    color: #fff;
}

.dropship-benefit-grid p {
    margin: 0;
    color: #756e64;
    font-size: 13px;
    line-height: 1.75;
}

.dropship-benefit-grid article:nth-child(2) p {
    color: rgba(255,255,255,0.68);
}

.dropship-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 265px 265px;
    gap: 14px;
}

.dropship-gallery__item {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 13px;
    background: #ddd;
}

.dropship-gallery__item--tall {
    grid-row: span 2;
}

.dropship-gallery__item--wide {
    grid-column: span 2;
}

.dropship-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(.2,.8,.2,1);
}

.dropship-gallery__item::after {
    content: "";
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(transparent, rgba(18,31,25,0.76));
}

.dropship-gallery__item > span {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 16px;
    font-weight: 750;
}

.dropship-gallery__item:hover img {
    transform: scale(1.055);
}

.dropship-gallery__item:hover > span i {
    transform: translateX(5px);
}

.dropship-gallery__item > span i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropship-conversion {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
    gap: 32px;
    align-items: start;
    scroll-margin-top: 30px;
}

.dropship-price-column {
    min-width: 0;
}

.dropshipping-price-card {
    padding: 10px;
    border: 1px solid rgba(143,123,90,0.18);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(34, 54, 45, 0.08);
}

.dropshipping-price-preview {
    position: relative;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 10px;
    display: block;
    cursor: zoom-in;
    background: #f4f0e9;
}

.dropshipping-price-preview img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.dropshipping-price-preview:hover img {
    transform: scale(1.012);
}

.dropshipping-price-download {
    min-height: 46px;
    margin-top: 9px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff;
    background: #9b8054;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: background 0.25s ease, transform 0.25s ease;
}

.dropshipping-price-download:hover {
    color: #fff;
    background: #294238;
    transform: translateY(-2px);
}

.dropship-form-card {
    position: sticky;
    top: 24px;
    padding: 31px;
    border: 1px solid rgba(143,123,90,0.2);
    border-radius: 15px;
    background: #faf7f1;
    box-shadow: 0 18px 45px rgba(34, 54, 45, 0.08);
}

.dropship-form-card h2 {
    margin: 9px 0 8px;
    color: #294238;
    font-size: 27px;
    line-height: 1.15;
}

.dropship-form-card > p {
    margin: 0 0 23px;
    color: #7d7569;
    font-size: 12px;
    line-height: 1.7;
}

.dropship-form-card .form-group {
    margin-bottom: 13px;
}

.dropship-form-card label {
    display: block;
    margin-bottom: 6px;
    color: #3c4d45;
    font-size: 11px;
    font-weight: 700;
}

.dropship-form-card .form-control {
    min-height: 44px;
    border-color: rgba(143,123,90,0.24);
    border-radius: 9px;
    background: rgba(255,255,255,0.82);
    font-size: 12px;
}

.dropship-form-card textarea.form-control {
    min-height: 105px;
    resize: vertical;
}

.dropship-form-card .form-control:focus {
    border-color: #9c8155;
    box-shadow: 0 0 0 3px rgba(156,129,85,0.12);
}

.dropship-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.dropship-submit {
    width: 100%;
    min-height: 47px;
    padding: 12px 17px;
    border: 0;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    color: #fff;
    background: #294238;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease;
}

.dropship-submit:hover {
    background: #9b8054;
    transform: translateY(-2px);
}

.dropship-form-divider {
    position: relative;
    margin: 15px 0;
    color: #a1988a;
    text-align: center;
    font-size: 10px;
}

.dropship-form-divider::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(143,123,90,0.18);
}

.dropship-form-divider span {
    position: relative;
    z-index: 1;
    padding: 0 10px;
    background: #faf7f1;
}

.dropshipping-whatsapp {
    width: 100%;
    min-height: 45px;
    border: 1px solid rgba(37,211,102,0.35);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #168c45;
    background: rgba(37,211,102,0.08);
    font-size: 11px;
    font-weight: 800;
    transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.dropshipping-whatsapp:hover {
    color: #fff;
    background: #25b95c;
    transform: translateY(-2px);
}

.dropship-final-cta {
    min-height: 220px;
    margin-top: 105px;
    padding: 48px 55px;
    overflow: hidden;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: #fff;
    background:
        radial-gradient(circle at 86% 15%, rgba(225,192,133,0.22), transparent 30%),
        #294238;
}

.dropship-final-cta .dropship-kicker {
    color: #dfc38f;
}

.dropship-final-cta h2 {
    max-width: 680px;
    margin: 10px 0 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.1;
}

.dropship-button--light {
    flex-shrink: 0;
    color: #294238;
    background: #f4e6cd;
}

.dropship-button--light:hover {
    color: #294238;
    background: #fff;
}

.dropshipping-lightbox {
    position: fixed;
    z-index: 11000;
    inset: 0;
    padding: 74px 20px 24px;
    overflow: auto;
    display: grid;
    place-items: center;
    background: rgba(12, 20, 16, 0.94);
}

.dropshipping-lightbox[hidden] {
    display: none;
}

.dropshipping-lightbox__content {
    width: min(1500px, 96vw);
    margin: auto;
}

.dropshipping-lightbox__content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 9px;
    box-shadow: 0 20px 65px rgba(0,0,0,0.4);
}

.dropshipping-lightbox__close {
    position: fixed;
    z-index: 2;
    top: 18px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.32);
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: #fff;
    background: rgba(0,0,0,0.5);
    font-size: 18px;
}

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

@media (max-width: 980px) {
    .dropship-hero {
        grid-template-columns: 1fr 0.9fr;
        min-height: 570px;
    }

    .dropship-hero__copy {
        padding: 48px;
    }

    .dropship-hero h1 {
        font-size: 54px;
    }

    .dropship-process-grid,
    .dropship-conversion {
        grid-template-columns: 1fr;
    }

    .dropship-process-visual {
        min-height: 0;
        aspect-ratio: 1502 / 730;
    }

    .dropship-form-card {
        position: static;
    }

    .dropship-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(3, 280px);
    }

    .dropship-gallery__item--tall {
        grid-row: span 2;
    }

    .dropship-gallery__item--wide {
        grid-column: span 2;
    }
}

@media (max-width: 720px) {
    .dropship-page {
        width: calc(100% - 24px);
        margin-top: 18px;
    }

    .dropship-hero {
        min-height: 790px;
        grid-template-columns: 1fr;
        grid-template-rows: auto 360px;
    }

    .dropship-hero__copy {
        padding: 40px 27px;
    }

    .dropship-hero h1 {
        margin-top: 16px;
        font-size: 47px;
        letter-spacing: -2px;
    }

    .dropship-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .dropship-stat-strip {
        width: calc(100% - 22px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 15px;
    }

    .dropship-stat-strip > div {
        padding: 13px;
    }

    .dropship-stat-strip > div:nth-child(2) {
        border-right: 0;
    }

    .dropship-stat-strip > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(143,123,90,0.18);
    }

    .dropship-section {
        padding-top: 78px;
    }

    .dropship-section-heading {
        margin-bottom: 30px;
        text-align: left;
    }

    .dropship-benefit-grid {
        grid-template-columns: 1fr;
    }

    .dropship-benefit-grid article {
        min-height: 245px;
    }

    .dropship-gallery {
        grid-template-rows: repeat(4, 230px);
    }

    .dropship-gallery__item--tall {
        grid-row: span 1;
    }

    .dropship-gallery__item--wide {
        grid-column: span 2;
    }

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

    .dropship-final-cta {
        margin-top: 78px;
        padding: 38px 27px;
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 460px) {
    .dropship-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 290px);
    }

    .dropship-gallery__item--wide {
        grid-column: span 1;
    }

    .dropship-floating-note--shipping {
        right: 10px;
    }

    .dropship-floating-note--stock {
        left: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dropship-floating-note {
        animation: none;
    }

    .dropship-hero__image img,
    .dropship-gallery__item img {
        transition: none;
    }
}

.language-switcher {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.language-switcher-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 170px;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    border-radius: var(--border-radius);
    overflow: hidden;
    z-index: 2000;
}

.language-switcher:hover .language-switcher-menu,
.language-switcher:focus-within .language-switcher-menu,
.language-switcher.open .language-switcher-menu {
    display: block;
}

.language-switcher-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
}

.language-switcher-menu a:hover,
.language-switcher-menu a.active {
    background: var(--bg-light);
    color: var(--primary);
}

/* Header */
header {
    background-color: var(--header-bg);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    color: var(--header-text);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
}

.logo {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--header-text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 66px;
    padding: 0 2px;
    color: var(--header-text);
    font-family: 'Caviar Dreams', var(--font-serif);
    font-size: 39px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1;
    text-transform: none;
    white-space: nowrap;
    flex-shrink: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.site-logo-image {
    display: block;
    width: 145px;
    height: 56px;
    object-fit: contain;
    flex: 0 0 auto;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    height: 42px;
    overflow: visible;
    border: 1px solid rgba(243, 235, 221, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.header-search--desktop {
    flex: 0 1 210px;
    width: 210px;
    min-width: 165px;
    margin-left: auto;
}

.header-search:focus-within {
    z-index: 40;
    border-color: rgba(231, 210, 173, 0.72);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 28px rgba(15, 23, 18, 0.2);
    transform: translateY(-1px);
}

.header-search__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.header-search input[type="search"] {
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0 8px 0 17px;
    border: 0;
    outline: 0;
    color: var(--header-text);
    background: transparent;
    font: inherit;
    font-size: 12px;
}

.header-search input[type="search"]::placeholder {
    color: rgba(243, 235, 221, 0.62);
}

.header-search input[type="search"]::-webkit-search-cancel-button {
    filter: invert(1);
    opacity: 0.62;
}

.header-search button {
    display: inline-grid;
    flex: 0 0 39px;
    width: 39px;
    height: 39px;
    place-items: center;
    margin-right: 1px;
    border: 0;
    border-radius: 50%;
    color: #f3ebdd;
    background: transparent;
    cursor: pointer;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.header-search button:hover {
    color: #26372e;
    background: #e7d2ad;
    transform: rotate(-8deg);
}

.header-search--mobile {
    display: none;
}

.header-search:has(.header-search-results:not([hidden])) {
    z-index: 40;
}

.header-search-results {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 50;
    width: min(440px, calc(100vw - 32px));
    overflow: hidden;
    border: 1px solid rgba(143, 123, 90, 0.2);
    border-radius: 14px;
    background: rgba(255, 253, 249, 0.985);
    box-shadow: 0 24px 55px rgba(24, 34, 27, 0.2);
    color: var(--primary);
    transform-origin: top right;
    animation: headerSearchResultsIn 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    backdrop-filter: blur(16px);
}

.header-search-results[hidden] {
    display: none !important;
}

.header-search-result {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    min-height: 78px;
    padding: 9px 12px;
    border-bottom: 1px solid rgba(143, 123, 90, 0.11);
    color: var(--primary);
    transition: background-color 0.22s ease, padding-left 0.22s ease;
}

.header-search-result:hover,
.header-search-result:focus-visible {
    padding-left: 16px;
    outline: none;
    background: #f5f0e7;
}

.header-search-result img {
    width: 58px;
    height: 60px;
    border: 1px solid rgba(143, 123, 90, 0.14);
    border-radius: 9px;
    background: #f4f1eb;
    object-fit: cover;
}

.header-search-result__copy {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.header-search-result__copy small {
    overflow: hidden;
    color: var(--secondary);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-search-result__copy strong {
    display: -webkit-box;
    overflow: hidden;
    color: #293a30;
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.header-search-result__price {
    color: #8f7b5a;
    font-size: 12px;
    font-weight: 800;
}

.header-search-results__empty {
    padding: 22px 18px;
    color: var(--text-muted);
    font-size: 12px;
    text-align: center;
}

.header-search-results__more {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 16px;
    color: #fff;
    background: linear-gradient(135deg, #536754, #3e5141);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.22s ease, padding-right 0.22s ease;
}

.header-search-results__more:hover {
    padding-right: 13px;
    color: #fff;
    background: linear-gradient(135deg, #9f875f, #826d4c);
}

.header-search-results__more i {
    transition: transform 0.22s ease;
}

.header-search-results__more:hover i {
    transform: translateX(3px);
}

@keyframes headerSearchResultsIn {
    from {
        opacity: 0;
        transform: translateY(-7px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.category-page-banner {
    position: relative;
    min-height: clamp(280px, 32vw, 420px);
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid rgba(143, 123, 90, 0.16);
    border-radius: 10px;
    background: #d8d0c2;
    isolation: isolate;
}

.category-page-banner__image {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-page-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(25, 29, 25, 0.78) 0%, rgba(25, 29, 25, 0.48) 48%, rgba(25, 29, 25, 0.08) 100%);
}

.category-page-banner--plain {
    background: linear-gradient(135deg, #3f4f43, #8f7b5a);
}

.category-page-banner__content {
    width: min(650px, 82%);
    padding: clamp(42px, 7vw, 88px);
    color: #fff;
}

.category-page-banner__kicker {
    display: block;
    margin-bottom: 12px;
    color: #e7d2ad;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.category-page-banner h1 {
    margin: 0 0 14px;
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(34px, 4.6vw, 58px);
    font-weight: 700;
    line-height: 1.04;
}

.category-page-banner p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(13px, 1.5vw, 16px);
    line-height: 1.7;
}

.catalog-page {
    margin-top: 40px;
    margin-bottom: 80px;
}

.catalog-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.catalog-layout--category {
    display: block;
}

.catalog-sidebar {
    flex: 0 0 260px;
    width: 260px;
}

.catalog-filter-panel {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.catalog-main {
    flex: 1;
    min-width: 0;
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.catalog-result-count {
    color: var(--text-muted);
    font-size: 14px;
}

.catalog-sort {
    display: flex;
    align-items: center;
    gap: 15px;
}

.catalog-empty-state {
    grid-column: 1 / -1;
    padding: 72px 24px;
    text-align: center;
    background: linear-gradient(145deg, #fff, #faf7f1);
    border: 1px solid rgba(143, 123, 90, 0.16);
    border-radius: 10px;
}

.category-catalog-page .category-page-banner {
    min-height: clamp(250px, 24vw, 320px);
    margin-bottom: 42px;
    border-color: rgba(143, 123, 90, 0.12);
    box-shadow: 0 22px 54px rgba(38, 45, 38, 0.11);
}

.category-catalog-page .category-page-banner__image {
    animation: categoryBannerReveal 0.9s ease-out both;
}

.category-catalog-page .category-page-banner__overlay {
    background:
        linear-gradient(90deg, rgba(21, 28, 23, 0.84) 0%, rgba(21, 28, 23, 0.52) 46%, rgba(21, 28, 23, 0.08) 100%),
        linear-gradient(0deg, rgba(21, 28, 23, 0.16), transparent 45%);
}

.category-catalog-page .category-page-banner__content {
    display: flex;
    min-height: clamp(250px, 24vw, 320px);
    padding: clamp(30px, 4.5vw, 58px);
    flex-direction: column;
    justify-content: center;
}

.category-catalog-page .category-page-banner__kicker {
    margin-bottom: 9px;
}

.category-catalog-page .category-page-banner h1 {
    margin-bottom: 10px;
    font-size: clamp(30px, 3.8vw, 48px);
}

.category-catalog-page .category-page-banner p {
    max-width: 560px;
    font-size: clamp(12px, 1.25vw, 15px);
    line-height: 1.6;
}

@keyframes categoryBannerReveal {
    from {
        opacity: 0.55;
        transform: scale(1.035);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.catalog-toolbar--category {
    position: relative;
    min-height: 126px;
    margin-bottom: 34px;
    padding: 24px 28px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 241, 0.96));
    border: 1px solid rgba(143, 123, 90, 0.15);
    border-radius: 10px;
    box-shadow: 0 18px 46px rgba(38, 45, 38, 0.06);
}

.catalog-toolbar--category::after {
    position: absolute;
    top: -72px;
    right: 16%;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(143, 123, 90, 0.09);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.category-collection-heading {
    position: relative;
    z-index: 1;
}

.category-collection-heading__kicker {
    display: block;
    margin-bottom: 7px;
    color: var(--secondary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.category-collection-heading h2 {
    margin: 0 0 5px;
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: clamp(25px, 2.5vw, 34px);
    font-weight: 700;
    line-height: 1.15;
}

.category-collection-heading p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
}

.catalog-toolbar--category .catalog-sort {
    position: relative;
    z-index: 1;
}

.catalog-toolbar--category .catalog-sort select {
    min-height: 42px;
    border-color: rgba(143, 123, 90, 0.24);
    border-radius: 999px;
}

.product-grid.catalog-product-grid--category {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 22px;
}

.product-card--category {
    border-color: rgba(143, 123, 90, 0.14);
    border-radius: 10px;
    box-shadow: 0 12px 34px rgba(38, 45, 38, 0.045);
}

.product-card--category:hover {
    border-color: rgba(143, 123, 90, 0.28);
    box-shadow: 0 24px 52px rgba(38, 45, 38, 0.11);
}

.product-card--category .product-image-wrapper {
    aspect-ratio: 4 / 5;
}

.product-card--category .product-info {
    padding: 22px 20px 21px;
}

.catalog-filter-section {
    border-bottom: 1px solid var(--border-color);
}

.catalog-filter-section summary {
    position: relative;
    padding: 0 28px 11px 0;
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.catalog-filter-section summary::-webkit-details-marker {
    display: none;
}

.catalog-filter-section summary::after {
    content: '\f078';
    position: absolute;
    top: 3px;
    right: 2px;
    color: var(--secondary);
    font-family: 'Font Awesome 6 Free';
    font-size: 11px;
    font-weight: 900;
    transition: transform 0.22s ease;
}

.catalog-filter-section[open] summary::after {
    transform: rotate(180deg);
}

.catalog-filter-section__content {
    padding: 2px 0 14px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li.has-children::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    line-height: 1;
    color: var(--header-text);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

.nav-menu > li.has-children > a {
    gap: 6px;
}

.nav-item-icon {
    font-size: 11px;
    color: var(--accent);
    opacity: 0.95;
}

.nav-menu > li.has-children > .submenu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 220px;
    background: #FFFDF9;
    border: 1px solid var(--border-color);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-radius: var(--border-radius);
    padding: 10px 0;
    list-style: none;
    z-index: 1200;
}

.nav-menu > li.has-children:hover > .submenu,
.nav-menu > li.has-children:focus-within > .submenu {
    display: block;
}

.nav-menu > li.has-children > .submenu li {
    position: relative;
}

.nav-menu > li.has-children > .submenu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 8px;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--dark);
    font-size: 14px;
    line-height: 1.3;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-menu > li.has-children > .submenu a::after {
    display: none;
}

.nav-menu > li.has-children > .submenu a:hover,
.nav-menu > li.has-children > .submenu a.active {
    background: var(--primary);
    color: var(--white);
    transform: translateX(3px);
}

.nav-menu > li.has-children > .submenu .submenu {
    top: -10px;
    left: calc(100% + 4px);
}

.nav-menu > li.has-children > .submenu .has-children::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 12px;
    height: 100%;
}

.nav-menu > li.has-children > .submenu .has-children:hover > .submenu,
.nav-menu > li.has-children > .submenu .has-children:focus-within > .submenu {
    display: block;
}

.menu-sort-area {
    padding: 0 24px 24px;
}

.menu-sort-root,
.menu-sort-children {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-sort-root {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-sort-node {
    background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
    border: 1px solid rgba(142, 122, 90, 0.16);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 14px 30px rgba(53, 42, 28, 0.06);
    transition: var(--transition);
}

.menu-sort-node:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(53, 42, 28, 0.09);
}

.menu-sort-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(234, 230, 223, 0.9);
    border-radius: 18px;
    padding: 12px 14px;
    box-shadow: 0 8px 18px rgba(53, 42, 28, 0.04);
}

.menu-sort-handle {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(78, 94, 78, 0.12), rgba(142, 122, 90, 0.1));
    border: 1px solid rgba(142, 122, 90, 0.12);
    color: var(--primary);
    cursor: grab;
    flex: 0 0 auto;
}

.menu-sort-icon,
.menu-mini-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(78, 94, 78, 0.08);
    color: var(--primary);
    flex: 0 0 auto;
}

.menu-sort-icon {
    background: linear-gradient(135deg, rgba(142, 122, 90, 0.12), rgba(224, 169, 109, 0.18));
    color: var(--secondary);
}

.menu-sort-icon i,
.menu-mini-icon i {
    font-size: 14px;
}

.menu-mini-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-size: 13px;
}

.menu-item-form-shell {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0 24px 24px;
}

.panel--compact {
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fffdf9 100%);
    border: 1px solid rgba(234, 230, 223, 0.8);
    border-radius: 28px;
    box-shadow: 0 18px 42px rgba(53, 42, 28, 0.06);
    backdrop-filter: blur(8px);
}

.menu-page-hero {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 26px 24px 18px;
    overflow: hidden;
}

.menu-page-hero::before {
    content: '';
    position: absolute;
    right: -70px;
    top: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 169, 109, 0.18) 0%, rgba(224, 169, 109, 0) 70%);
    pointer-events: none;
}

.menu-page-hero-copy {
    min-width: 0;
    position: relative;
    z-index: 1;
}

.menu-page-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(142, 122, 90, 0.12);
    color: var(--secondary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .35px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.menu-page-hero-title {
    font-family: var(--font-serif);
    color: var(--dark);
    font-size: 31px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.2px;
}

.menu-page-hero-subtitle {
    margin-top: 6px;
    font-size: 14px;
    color: var(--text-muted);
    max-width: 760px;
}

.menu-page-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.menu-page-hero-stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(78, 94, 78, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(78, 94, 78, 0.08);
}

.menu-page-hero-stat i {
    font-size: 12px;
}

.menu-page-hero-back {
    flex: 0 0 auto;
    white-space: nowrap;
    border-radius: 999px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.menu-item-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
}

.menu-item-form-main {
    min-width: 0;
    background: #fff;
    border: 1px solid rgba(234, 230, 223, 0.9);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 12px 28px rgba(53, 42, 28, 0.04);
}

.menu-item-inline-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.menu-item-form-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 2px;
}

.menu-items-section-subtitle {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.45;
    max-width: 760px;
}

.menu-items-section-count {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(78, 94, 78, 0.1), rgba(142, 122, 90, 0.12));
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid rgba(78, 94, 78, 0.08);
    box-shadow: 0 10px 20px rgba(53, 42, 28, 0.04);
}

.menu-items-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(234, 230, 223, 0.85);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(53, 42, 28, 0.04);
}

.menu-items-table thead th {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .25px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding-top: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
    background: #fbfaf7;
}

.menu-items-table tbody td {
    padding-top: 16px;
    padding-bottom: 16px;
    vertical-align: middle;
    border-top: 1px solid rgba(234, 230, 223, 0.7);
}

.menu-items-table tbody tr:hover {
    background: rgba(250, 248, 245, 0.85);
}

.menu-items-table code {
    background: rgba(78, 94, 78, 0.06);
    border: 1px solid rgba(78, 94, 78, 0.08);
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--primary);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    word-break: break-all;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.menu-item-row-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-item-row-title {
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
}

.menu-item-row-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.menu-item-row-chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(142, 122, 90, 0.1);
    color: var(--secondary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2px;
    white-space: nowrap;
    border: 1px solid rgba(142, 122, 90, 0.08);
}

.menu-item-row-chip--muted {
    background: rgba(78, 94, 78, 0.08);
    color: var(--primary);
}

.menu-item-row-parent,
.menu-item-row-order {
    font-size: 13px;
    color: var(--dark);
    font-weight: 600;
}

.menu-item-row-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.menu-item-row-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: var(--transition);
    box-shadow: 0 8px 18px rgba(53, 42, 28, 0.04);
}

.menu-item-row-action:hover {
    transform: translateY(-1px);
}

.menu-item-row-action--edit {
    background: rgba(142, 122, 90, 0.12);
    color: var(--secondary);
    border-color: rgba(142, 122, 90, 0.12);
}

.menu-item-row-action--add {
    background: rgba(78, 94, 78, 0.1);
    color: var(--primary);
    border-color: rgba(78, 94, 78, 0.1);
}

.menu-item-row-action--delete {
    background: rgba(224, 91, 91, 0.12);
    color: #b93f3f;
    border-color: rgba(224, 91, 91, 0.14);
}

.menu-item-row-action--delete:hover {
    color: #b93f3f;
}

.panel--compact .table-responsive {
    overflow-x: auto;
}


.menu-sort-meta {
    flex: 1 1 260px;
    min-width: 220px;
}

.menu-sort-title {
    font-weight: 700;
    color: var(--dark);
    font-size: 15px;
}

.menu-sort-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
    word-break: break-all;
}

.menu-sort-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.menu-sort-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.menu-sort-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary), #9c8563);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(142, 122, 90, 0.18);
}

.menu-sort-action:hover {
    color: #fff;
    transform: translateY(-1px);
}

.menu-sort-children {
    margin-top: 10px;
    margin-left: 24px;
    padding-left: 18px;
    border-left: 2px dashed rgba(142, 122, 90, 0.25);
    min-height: 12px;
}

.menu-sort-children:empty {
    min-height: 16px;
}

.menu-sort-ghost {
    opacity: 0.35;
}

.menu-sort-dragging {
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
    transform: rotate(-1deg) scale(1.01);
}

.menu-sort-root .menu-sort-node > .menu-sort-item {
    background: transparent;
}

.menu-sort-root > .menu-sort-node {
    position: relative;
}

.menu-sort-root > .menu-sort-node::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 14px;
    bottom: 14px;
    width: 2px;
    background: linear-gradient(180deg, rgba(142,122,90,0.12), rgba(142,122,90,0.0));
    opacity: 0.45;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-member-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.member-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2px;
    line-height: 1;
    border: 1px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.member-action-btn--solid {
    background: linear-gradient(135deg, var(--secondary), #A08A67);
    color: #fff;
    box-shadow: 0 10px 24px rgba(142, 122, 90, 0.18);
}

.member-action-btn--solid:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(142, 122, 90, 0.24);
    color: #fff;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366, #1da851);
    color: #fff;
    font-size: 30px;
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
    z-index: 1200;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.floating-whatsapp:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 34px rgba(37, 211, 102, 0.34);
    filter: saturate(1.05);
}

.floating-whatsapp:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.25);
    outline-offset: 4px;
}

.member-action-btn--ghost {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
    color: var(--header-text);
}

.member-action-btn--ghost:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.28);
    color: #fff;
    transform: translateY(-1px);
}

.member-action-btn i {
    font-size: 13px;
}

.mobile-member-actions {
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-member-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .2px;
    transition: var(--transition);
}

.mobile-member-btn--solid {
    background: linear-gradient(135deg, var(--secondary), #A08A67);
    color: #fff;
    box-shadow: 0 10px 22px rgba(142, 122, 90, 0.16);
}

.mobile-member-btn--ghost {
    background: #f7f5f1;
    color: var(--dark);
    border: 1px solid var(--border-color);
}

.mobile-member-btn--wishlist {
    color: #a74848;
    background: rgba(167, 72, 72, 0.06);
    border: 1px solid rgba(167, 72, 72, 0.16);
}

.mobile-member-btn:hover {
    transform: translateY(-1px);
}

.header-icon {
    font-size: 20px;
    position: relative;
    color: var(--header-text);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

/* Hero Slider */
.hero-slider {
    background-color: #EBE7E0;
    position: relative;
    overflow: hidden;
    height: 650px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--white);
    color: var(--dark);
}

.prev-arrow { left: 30px; }
.next-arrow { right: 30px; }

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 24px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.slider-dot.active {
    background: var(--white);
    width: 36px;
}

.slide-content h2 {
    font-family: var(--font-serif);
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--secondary);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary);
    box-shadow: 0 4px 15px rgba(78, 94, 78, 0.2);
}

/* Category Grid */
.section-title {
    font-family: var(--font-serif);
    font-size: 32px;
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.category-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 22px 20px 24px;
    text-align: center;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    border-color: var(--secondary);
}

.category-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: calc(var(--border-radius) - 2px);
    overflow: hidden;
    background: #f8f5ef;
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.category-card-icon {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: calc(var(--border-radius) - 2px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f5ef;
    border: 1px solid rgba(0,0,0,0.04);
}

.category-card-icon i {
    font-size: 36px;
    color: var(--secondary);
}

.category-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    min-height: 44px;
    line-height: 1.35;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Products Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.product-grid--featured,
.product-grid--discount,
.product-grid--new-arrivals,
.product-grid--best-sellers {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.product-card-link {
    display: block;
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 7 / 9;
    overflow: hidden;
}

.product-image-wrapper img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.35s ease;
}

.product-image-secondary {
    position: absolute !important;
    inset: 0;
    opacity: 0;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-card:hover .product-image-wrapper img:first-child {
    opacity: 0;
}

.product-card:hover .product-image-wrapper .product-image-secondary {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 50px;
    text-transform: uppercase;
}

.product-badge--secondary {
    top: 44px;
    background: linear-gradient(135deg, #8f7b5a, #b39a74);
    color: #fff;
}

.product-feature-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    background: linear-gradient(135deg, #69ddd4, #35c2bb);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.2px;
    line-height: 1.1;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(57, 189, 181, 0.28);
    border: 2px solid rgba(255,255,255,0.95);
    z-index: 2;
    pointer-events: none;
    transform-origin: center center;
    transform-style: preserve-3d;
    backface-visibility: visible;
    animation: productFeatureBadgeFlip 2.8s ease-in-out infinite;
}

.product-feature-badge::before {
    content: "\f01e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -7px;
    left: -1px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #35c2bb;
    font-size: 9px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

@keyframes productFeatureBadgeFlip {
    0%, 100% {
        transform: perspective(900px) rotateY(0deg);
    }
    50% {
        transform: perspective(900px) rotateY(180deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-feature-badge {
        animation: none;
    }
}

.product-info {
    padding: 22px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 5px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 45px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 10px;
}

.price {
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    min-height: 43px;
    padding: 9px 18px 9px 42px;
    border: 1px solid rgba(159, 133, 91, 0.3);
    border-radius: 999px;
    background: linear-gradient(135deg, #fffdf8 0%, #f4efe5 100%);
    font-weight: 750;
    font-size: 17px;
    letter-spacing: 0.01em;
    color: var(--primary);
    line-height: 1.2;
    cursor: pointer;
    box-shadow:
        0 9px 22px rgba(61, 70, 58, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition:
        color 0.28s ease,
        background-color 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.32s ease,
        transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.price::before {
    position: absolute;
    left: 9px;
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #aa9168, #88734f);
    color: #fff;
    content: "\20BA";
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(143, 123, 90, 0.25);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-starting-price {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    align-self: flex-start;
    margin-top: auto;
    margin-bottom: 10px;
    min-height: 43px;
    padding: 9px 18px;
    border: 1px solid rgba(159, 133, 91, 0.32);
    border-radius: 999px;
    background: linear-gradient(135deg, #fffdf8 0%, #f1eadc 100%);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    box-shadow:
        0 9px 22px rgba(61, 70, 58, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    overflow: hidden;
    transition:
        background-position 0.45s ease,
        filter 0.32s ease,
        box-shadow 0.32s ease,
        transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
    background-size: 180% 100%;
}

.price::after,
.product-starting-price::after {
    position: absolute;
    top: -45%;
    left: -65%;
    width: 42%;
    height: 190%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.42),
        transparent
    );
    content: "";
    pointer-events: none;
    transform: skewX(-18deg);
    transition: left 0.58s ease;
}

.price:hover {
    color: #fff;
    background: linear-gradient(135deg, #536754, #3e5141);
    border-color: rgba(143, 123, 90, 0.55);
    box-shadow: 0 15px 30px rgba(52, 68, 54, 0.24);
    transform: translateY(-3px) scale(1.025);
}

.price:hover::before {
    background: rgba(255, 255, 255, 0.16);
    transform: rotate(-10deg) scale(1.08);
}

.product-starting-price:hover {
    background: linear-gradient(135deg, #536754, #3e5141);
    border-color: rgba(143, 123, 90, 0.55);
    color: #fff;
    box-shadow: 0 15px 30px rgba(52, 68, 54, 0.24);
    transform: translateY(-3px) scale(1.025);
}

.price:hover::after,
.product-starting-price:hover::after {
    left: 125%;
}

.product-starting-price__label,
.product-starting-price__value {
    position: relative;
    z-index: 1;
    font-size: 12px;
}

.product-starting-price__label {
    color: #8f7b5a;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.28s ease;
}

.product-starting-price__value {
    font-size: 15px;
    font-weight: 800;
}

.product-starting-price:hover .product-starting-price__label {
    color: rgba(255, 255, 255, 0.72);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 14px;
}

.product-extra-prices {
    min-height: 34px;
    margin-bottom: 14px;
}

.product-extra-prices--compact {
    margin-top: 2px;
    margin-bottom: 0;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
}

.product-info > .btn-primary {
    margin-top: auto;
    width: 100%;
}

/* Brand Trust Features */
.features-bar {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
    margin: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.feature-item img {
    height: 32px;
    width: auto;
    max-width: 84px;
    display: block;
    margin: 0 auto 15px;
}

.feature-item h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-muted);
}

@media (min-width: 768px) and (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .product-image-wrapper {
        aspect-ratio: 5 / 6;
    }

    .product-info {
        padding: 18px 16px 16px;
    }

    .product-title {
        font-size: 15px;
        min-height: 44px;
        margin-bottom: 10px;
    }

    .price {
        font-size: 17px;
    }

    .product-badge {
        top: 11px;
        left: 11px;
        font-size: 9px;
        padding: 4px 8px;
    }

    .product-feature-badge {
        width: 68px;
        height: 68px;
        right: 10px;
        bottom: 10px;
        font-size: 8px;
        padding: 8px;
    }
}

@media (max-width: 767px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .product-image-wrapper {
        aspect-ratio: 4 / 5;
    }

    .product-info {
        padding: 16px 14px 14px;
    }

    .product-title {
        font-size: 15px;
        min-height: 42px;
        margin-bottom: 10px;
    }

    .product-price-row {
        margin-bottom: 14px;
    }

    .price {
        font-size: 17px;
    }

    .old-price {
        font-size: 12px;
    }

    .product-badge {
        top: 10px;
        left: 10px;
        font-size: 9px;
        padding: 4px 8px;
    }

    .product-badge--secondary {
        top: 38px;
    }

    .product-feature-badge {
        right: 10px;
        bottom: 10px;
        width: 62px;
        height: 62px;
        font-size: 8px;
        padding: 8px;
    }

    .product-feature-badge::before {
        top: -5px;
        left: 0;
        width: 16px;
        height: 16px;
        font-size: 7px;
    }
}

@media (max-width: 575px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .product-info {
        padding: 14px 12px 12px;
    }

    .product-category {
        font-size: 11px;
    }

    .product-title {
        font-size: 14px;
        min-height: 40px;
    }

    .product-badge--secondary {
        top: 36px;
    }

    .product-info > .btn-primary {
        font-size: 11px !important;
        padding: 9px 10px !important;
    }
}

/* Footer */
footer.front-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 0%, rgba(190, 163, 113, .08), transparent 26%),
        linear-gradient(145deg, #202a23 0%, #273229 58%, #1f2821 100%);
    color: #E2DDD5;
    padding: 44px 0 15px;
    font-size: 12.5px;
}

footer.front-footer::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(205, 181, 136, .52), transparent);
}

.footer-newsletter {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    align-items: center;
    gap: 28px;
    margin-top: 20px;
    margin-bottom: 14px;
    padding-top: 24px;
    padding-bottom: 8px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-newsletter__copy {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-newsletter__copy > span {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid rgba(196, 168, 115, .38);
    border-radius: 999px;
    color: #d2b67f;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .18em;
}

.footer-newsletter__copy h3 {
    margin: 0 0 3px;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 650;
}

.footer-newsletter__copy p {
    margin: 0;
    color: rgba(242, 238, 231, .58);
    font-size: 11.5px;
}

.footer-newsletter__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .045);
    transition: border-color .25s ease, background .25s ease;
}

.footer-newsletter__form:focus-within {
    border-color: rgba(196, 168, 115, .72);
    background: rgba(255, 255, 255, .07);
}

.footer-newsletter__form input {
    min-width: 0;
    padding: 0 16px;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    font: inherit;
}

.footer-newsletter__form input::placeholder {
    color: rgba(242, 238, 231, .46);
}

.footer-newsletter__form button {
    min-height: 40px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #243129;
    background: #c4a873;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.footer-newsletter__form button:hover {
    background: #d2b982;
    transform: translateX(2px);
}

.footer-newsletter__form button:disabled {
    cursor: wait;
    opacity: .72;
}

.footer-newsletter__message {
    position: absolute;
    right: 5px;
    bottom: 7px;
    margin: 0;
    font-size: 9.5px;
}

.footer-newsletter__message.is-success { color: #9ed6ad; }
.footer-newsletter__message.is-error { color: #f1a69e; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.1fr .82fr 1.45fr;
    gap: clamp(18px, 2vw, 32px);
    margin-bottom: 28px;
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 14px;
    margin: 2px 0 12px;
    font-weight: 650;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: .01em;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 1px;
    background: #bca273;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 13px;
}

.footer-logo img {
    display: block;
    width: 125px;
    height: auto;
}

.footer-brand-copy {
    max-width: 285px;
    margin: 0 0 16px;
    color: rgba(242, 238, 231, .62);
    font-size: 12px;
    line-height: 1.65;
}

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

.footer-socials a {
    width: 31px;
    height: 31px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #f2eee7;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.footer-socials a:hover {
    border-color: #bca273;
    background: #bca273;
    transform: translateY(-3px);
}

.footer-col ul {
    display: grid;
    grid-auto-rows: minmax(20px, auto);
    row-gap: 5px;
    list-style: none;
}

.footer-col li {
    margin: 0;
    display: flex;
    align-items: center;
}

.footer-col li a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 20px;
    color: rgba(242, 238, 231, .68);
    line-height: 1.45;
    transition: color .2s ease, transform .2s ease;
}

.footer-col li a::before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #a98c5c;
    opacity: .7;
}

.footer-col li a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-category-col ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
}

.footer-trust-row {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(360px, 1fr);
    gap: 12px;
    align-items: stretch;
    margin-bottom: 14px;
}

.footer-payment-banner {
    min-height: 54px;
    padding: 5px 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 9px;
    background: #f4f3f1;
    box-shadow: 0 10px 26px rgba(5, 12, 8, .12);
}

.footer-payment-banner img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.footer-contact-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 9px;
    overflow: hidden;
    background: rgba(255,255,255,.035);
}

.footer-contact-strip > a {
    min-height: 54px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #f2eee7;
    border-right: 1px solid rgba(255,255,255,.1);
    transition: background .25s ease;
}

.footer-contact-strip > a:last-child { border-right: 0; }
.footer-contact-strip > a:hover { color: #fff; background: rgba(188,162,115,.12); }
.footer-contact-strip i { color: #c4a873; font-size: 14px; }
.footer-contact-strip span { display: flex; flex-direction: column; gap: 1px; font-size: 11.5px; font-weight: 600; }
.footer-contact-strip small { color: rgba(242,238,231,.46); font-size: 7.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 13px;
    text-align: center;
    font-size: 10px;
    color: rgba(255,255,255,0.34);
}

@media (max-width: 980px) {
    .footer-newsletter { grid-template-columns: 1fr; gap: 16px; }
    .footer-newsletter__message { right: auto; left: 0; }
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 30px;
    }
    .footer-trust-row { grid-template-columns: 1fr; }
    .footer-payment-banner { width: min(760px, 100%); justify-self: center; }
}

@media (max-width: 640px) {
    footer.front-footer { padding-top: 34px; }
    .footer-newsletter { margin-top: 16px; margin-bottom: 12px; padding-top: 22px; padding-bottom: 24px; }
    .footer-newsletter__copy { align-items: flex-start; gap: 11px; }
    .footer-newsletter__copy > span { margin-top: 2px; }
    .footer-newsletter__form { grid-template-columns: minmax(0, 1fr) auto; }
    .footer-newsletter__form button { min-width: 46px; padding: 0 14px; }
    .footer-newsletter__form button span { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 19px; margin-bottom: 24px; }
    .footer-brand-copy { max-width: 360px; }
    .footer-category-col ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-trust-row { gap: 9px; margin-bottom: 10px; }
    .footer-payment-banner { width: 100%; min-height: auto; padding: 4px 5px; border-radius: 7px; }
    .footer-contact-strip { grid-template-columns: 1fr; }
    .footer-contact-strip > a { min-height: 48px; justify-content: flex-start; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
    .footer-contact-strip > a:last-child { border-bottom: 0; }
}

/* Cart Page */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.cart-table th {
    background-color: #faf9f6;
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cart-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.qty-input {
    width: 72px;
    padding: 10px 12px;
    border: 1px solid #d9d5cc;
    text-align: center;
    border-radius: 12px;
    background: #fff;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.qty-input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(142, 122, 90, 0.12);
}

/* Shared storefront form styles */
.site-form-shell {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    padding: 32px;
}
.site-form-title {
    font-family: var(--font-serif);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}
.site-form-subtitle {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 14px;
}
.site-form-section {
    margin-top: 28px;
}
.site-form-section-title {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}
.site-form-group {
    margin-bottom: 18px;
}
.site-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.site-input,
.site-textarea {
    width: 100%;
    border: 1px solid #d9d5cc;
    background: #fff;
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
}
.site-input:focus,
.site-textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(142, 122, 90, 0.12);
}
.site-textarea {
    min-height: 110px;
    resize: vertical;
}

.form-control {
    width: 100%;
    border: 1px solid #d9d5cc;
    background: #fff;
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
}

.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(142, 122, 90, 0.12);
}

textarea.form-control {
    min-height: 110px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%), linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

input[type="checkbox"],
input[type="radio"] {
    accent-color: var(--secondary);
}
.site-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.site-form-note {
    background: #faf8f5;
    border: 1px solid var(--border-color);
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 13px;
}
.site-choice-list {
    display: grid;
    gap: 10px;
}
.site-choice-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 15px 16px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
}
.site-choice-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}
.site-choice-card input[type="radio"],
.site-choice-card input[type="checkbox"] {
    accent-color: var(--secondary);
    transform: scale(1.05);
    margin-top: 3px;
}
.site-check-row label {
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}
.site-check-row input[type="checkbox"],
.site-check-row input[type="radio"] {
    accent-color: var(--secondary);
    margin-top: 3px;
}

@media (max-width: 768px) {
    .site-form-shell {
        padding: 22px;
    }
    .site-form-row {
        grid-template-columns: 1fr;
    }
}

/* Mega Menu styles */
.mega-menu-trigger {
    position: relative;
}
.mega-menu-trigger::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}
.mega-menu-content {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    background: #FFFDF9;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 25px;
    border-radius: var(--border-radius);
    z-index: 1000;
}
.mega-menu-trigger:hover .mega-menu-content,
.mega-menu-trigger:focus-within .mega-menu-content {
    display: block;
}
.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}
.mega-grid h5 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 6px;
    font-weight: 700;
}
.mega-grid ul {
    list-style: none;
    padding: 0;
}
.mega-grid li {
    margin-bottom: 6px;
    font-size: 13px;
}

.mega-grid a {
    color: var(--secondary);
}

.mega-grid a:hover {
    color: var(--secondary);
    padding-left: 2px;
}

[dir="rtl"] body {
    direction: rtl;
}

[dir="rtl"] .top-bar-content,
[dir="rtl"] .header-main,
[dir="rtl"] .footer-grid,
[dir="rtl"] .features-grid {
    direction: rtl;
}

[dir="rtl"] .nav-menu,
[dir="rtl"] .top-bar-links,
[dir="rtl"] .top-bar-social,
[dir="rtl"] .header-actions {
    flex-direction: row-reverse;
}

[dir="rtl"] .mega-grid,
[dir="rtl"] .mega-grid h5,
[dir="rtl"] .mega-grid li {
    text-align: right;
}

[dir="rtl"] .mega-grid a:hover {
    padding-left: 0;
    padding-right: 2px;
}

[dir="rtl"] .language-switcher-menu {
    right: auto;
    left: 0;
}

@media (max-width: 1200px) and (min-width: 992px) {
    .header-main {
        gap: 15px;
    }

    .nav-menu {
        gap: 20px;
    }

    .header-search--desktop {
        flex-basis: 170px;
        min-width: 145px;
    }

    .header-actions {
        gap: 12px;
    }

    .member-action-btn {
        padding-right: 13px;
        padding-left: 13px;
    }
}

@media (max-width: 991px) {
    .main-nav-wrapper {
        display: none;
    }
    .header-search--desktop {
        display: none;
    }
    .header-search--mobile {
        display: flex;
        width: 100%;
        height: 46px;
        margin-bottom: 17px;
        border-color: rgba(143, 123, 90, 0.24);
        background: #faf8f5;
        box-shadow: 0 8px 22px rgba(38, 45, 38, 0.06);
    }
    .header-search--mobile .header-search-results {
        right: 0;
        left: 0;
        width: 100%;
        max-height: min(480px, 62vh);
        overflow-y: auto;
        transform-origin: top center;
    }
    .header-search--mobile:focus-within {
        border-color: rgba(143, 123, 90, 0.58);
        background: #fff;
        box-shadow: 0 12px 28px rgba(38, 45, 38, 0.09);
    }
    .header-search--mobile input[type="search"] {
        color: var(--primary);
        font-size: 14px;
    }
    .header-search--mobile input[type="search"]::placeholder {
        color: var(--text-muted);
    }
    .header-search--mobile input[type="search"]::-webkit-search-cancel-button {
        filter: none;
    }
    .header-search--mobile button {
        color: var(--secondary);
    }
    .mobile-menu-btn {
        display: block !important;
    }
    .site-logo-text {
        min-height: 52px;
        font-size: 33px;
    }
    .site-logo-image {
        width: 120px;
        height: 46px;
    }
    .header-member-actions {
        gap: 8px;
    }
    .member-action-btn span {
        display: none;
    }
    .member-action-btn {
        padding: 11px 13px;
    }

    .menu-sort-area {
        padding: 0 14px 16px;
    }

    .menu-sort-children {
        margin-left: 18px;
    }

    .menu-sort-item {
        gap: 10px;
    }

    .menu-sort-actions {
        width: 100%;
    }

    .menu-item-form-shell {
        padding: 0 14px 16px;
    }

    .menu-page-hero {
        padding: 18px 16px 6px;
        flex-direction: column;
    }

    .menu-page-hero-title {
        font-size: 24px;
    }

    .menu-page-hero-stats {
        margin-top: 10px;
    }

    .menu-page-hero-stat {
        padding: 7px 10px;
    }

    .menu-item-form-main {
        padding: 16px;
        border-radius: 18px;
    }

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

    .menu-item-inline-grid {
        grid-template-columns: 1fr;
    }

    .menu-items-section-count {
        width: fit-content;
    }

    .menu-items-table {
        border-radius: 16px;
    }

    .menu-items-table thead th,
    .menu-items-table tbody td {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .menu-item-row-actions {
        gap: 6px;
    }

    .menu-item-row-action {
        padding: 6px 10px;
    }

    #mobile-nav-panel ul li {
        position: relative;
    }

    #mobile-nav-panel ul .submenu {
        display: block;
        position: static;
        list-style: none;
        margin-top: 8px;
        margin-left: 14px;
        padding-left: 12px;
        border-left: 2px solid var(--border-color);
    }

    #mobile-nav-panel ul .submenu li {
        margin-top: 8px;
    }

    #mobile-nav-panel ul .submenu a {
        font-size: 14px;
        font-weight: 600;
        padding: 0;
    }

    #mobile-nav-panel ul .submenu a::after {
        display: none;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
        font-size: 28px;
    }
}

/* Campaign landing page */
.campaign-page {
    width: min(1180px, calc(100% - 40px));
    margin: 38px auto 90px;
}

.campaign-hero {
    position: relative;
    min-height: 470px;
    padding: clamp(54px, 8vw, 92px);
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    border-radius: 18px;
    color: #fff;
    background:
        linear-gradient(105deg, rgba(24, 45, 37, 0.98) 0%, rgba(37, 61, 50, 0.94) 53%, rgba(77, 74, 56, 0.84) 100%),
        radial-gradient(circle at 80% 28%, rgba(218, 183, 121, 0.38), transparent 32%);
    box-shadow: 0 28px 65px rgba(29, 45, 37, 0.16);
}

.campaign-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.18;
    background-image: repeating-linear-gradient(120deg, transparent 0 45px, rgba(255,255,255,0.18) 46px, transparent 47px);
    animation: campaignPattern 18s linear infinite;
}

.campaign-hero__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.campaign-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ad9061;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.campaign-hero .campaign-eyebrow {
    color: #e8ca92;
}

.campaign-hero h1 {
    margin: 19px 0 22px;
    max-width: 700px;
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 650;
    line-height: 0.98;
    letter-spacing: -2.5px;
}

.campaign-hero h1 em {
    color: #e5c791;
    font-style: normal;
}

.campaign-hero p {
    max-width: 570px;
    color: rgba(255,255,255,0.76);
    font-size: 16px;
    line-height: 1.8;
}

.campaign-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
    padding: 14px 22px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.campaign-hero__cta:hover {
    color: #263e34;
    background: #f4ead8;
    transform: translateY(-3px);
}

.campaign-hero__cta i {
    animation: campaignArrow 1.6s ease-in-out infinite;
}

.campaign-hero__seal {
    position: absolute;
    right: clamp(34px, 8vw, 100px);
    top: 50%;
    width: 176px;
    height: 176px;
    border: 1px solid rgba(237, 205, 150, 0.55);
    border-radius: 50%;
    transform: translateY(-50%) rotate(-8deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ecd39f;
    box-shadow: inset 0 0 0 8px rgba(255,255,255,0.04);
    animation: campaignSeal 5s ease-in-out infinite;
}

.campaign-hero__seal::before,
.campaign-hero__seal::after {
    content: "✦";
    position: absolute;
    font-size: 12px;
}

.campaign-hero__seal::before { top: 16px; }
.campaign-hero__seal::after { bottom: 16px; }
.campaign-hero__seal span,
.campaign-hero__seal small { font-size: 9px; font-weight: 800; letter-spacing: 2px; }
.campaign-hero__seal strong { margin: 5px 0; font-size: 28px; letter-spacing: 1px; }

.campaign-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    border: 1px solid rgba(232, 202, 146, 0.24);
    animation: campaignFloat 8s ease-in-out infinite;
}

.campaign-hero__glow--one {
    top: -110px;
    right: -80px;
    width: 360px;
    height: 360px;
}

.campaign-hero__glow--two {
    right: 210px;
    bottom: -180px;
    width: 300px;
    height: 300px;
    animation-delay: -3s;
}

.campaign-banners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin: 28px 0 70px;
}

.campaign-banner-card {
    position: relative;
    min-height: 230px;
    padding: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(143, 123, 90, 0.18);
    border-radius: 14px;
    color: #294238;
    background: linear-gradient(145deg, #f7f1e7, #fffdf9);
    box-shadow: 0 14px 36px rgba(38, 55, 46, 0.08);
    transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
}

.campaign-banner-card::before {
    content: "";
    position: absolute;
    top: -80%;
    left: -50%;
    width: 55%;
    height: 250%;
    transform: rotate(24deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.66), transparent);
    animation: campaignShine 5s ease-in-out infinite;
    pointer-events: none;
}

.campaign-banner-card--2 {
    color: #f8f3e9;
    background: linear-gradient(145deg, #365748, #223d32);
}

.campaign-banner-card--3 {
    background: linear-gradient(145deg, #e6d3b2, #f8efe1);
}

.campaign-banner-card:hover {
    color: inherit;
    transform: translateY(-7px);
    box-shadow: 0 22px 48px rgba(38, 55, 46, 0.15);
}

.campaign-banner-card__number {
    position: absolute;
    top: 20px;
    right: 23px;
    color: rgba(143, 123, 90, 0.35);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.campaign-banner-card--2 .campaign-banner-card__number {
    color: rgba(255,255,255,0.3);
}

.campaign-banner-card__copy {
    max-width: 72%;
}

.campaign-banner-card__copy > span {
    display: block;
    margin-bottom: 10px;
    color: #a48757;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.campaign-banner-card__copy h2 {
    margin: 0 0 8px;
    color: inherit;
    font-size: 22px;
    line-height: 1.2;
}

.campaign-banner-card__copy small {
    opacity: 0.67;
    font-size: 11px;
}

.campaign-banner-card__offer {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.campaign-banner-card__offer strong {
    font-size: 34px;
    line-height: 1;
}

.campaign-banner-card--editorial .campaign-banner-card__offer strong {
    font-size: 22px;
    letter-spacing: 1px;
}

.campaign-banner-card__offer span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.campaign-banner-card__arrow {
    position: absolute;
    right: 24px;
    bottom: 27px;
    transition: transform 0.3s ease;
}

.campaign-banner-card:hover .campaign-banner-card__arrow {
    transform: translateX(6px);
}

.campaign-products {
    scroll-margin-top: 30px;
}

.campaign-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(143, 123, 90, 0.2);
}

.campaign-section-heading h2 {
    margin: 8px 0 0;
    color: var(--primary);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1;
}

.campaign-section-heading p {
    color: var(--text-muted);
    font-size: 13px;
}

.campaign-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.campaign-product-card {
    position: relative;
    border-color: rgba(143, 123, 90, 0.18);
    box-shadow: 0 12px 32px rgba(37, 57, 48, 0.06);
}

.campaign-product-card:hover {
    box-shadow: 0 22px 44px rgba(37, 57, 48, 0.13);
}

.campaign-product-badge {
    background: linear-gradient(135deg, #b98f50, #8f6d3b);
}

.campaign-product-discount {
    position: absolute;
    top: 12px;
    right: 12px;
    min-width: 52px;
    height: 52px;
    padding: 0 8px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: #2f604b;
    box-shadow: 0 8px 20px rgba(29, 74, 54, 0.25);
    font-size: 12px;
    font-weight: 800;
    animation: campaignOfferPulse 2.8s ease-in-out infinite;
}

.campaign-price-before {
    margin: 0 0 6px;
    color: #9d9588;
    font-size: 13px;
    text-decoration: line-through;
}

.campaign-empty {
    padding: 72px 24px;
    border: 1px solid rgba(143, 123, 90, 0.2);
    border-radius: 14px;
    text-align: center;
    background: #faf7f1;
}

.campaign-empty i {
    color: #a98d60;
    font-size: 38px;
}

.campaign-empty h3 {
    margin: 18px 0 8px;
    color: var(--primary);
    font-size: 24px;
}

.campaign-empty p {
    margin-bottom: 22px;
    color: var(--text-muted);
}

.campaign-empty a {
    display: inline-flex;
    padding: 12px 20px;
    border-radius: 999px;
    color: #fff;
    background: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

@keyframes campaignPattern {
    to { background-position: 180px 0; }
}

@keyframes campaignArrow {
    0%, 100% { transform: translateY(-2px); }
    50% { transform: translateY(4px); }
}

@keyframes campaignSeal {
    0%, 100% { transform: translateY(-50%) rotate(-8deg) scale(1); }
    50% { transform: translateY(-53%) rotate(-4deg) scale(1.03); }
}

@keyframes campaignFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-15px, 14px, 0); }
}

@keyframes campaignShine {
    0%, 48% { left: -60%; }
    72%, 100% { left: 145%; }
}

@keyframes campaignOfferPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.07); }
}

@media (max-width: 960px) {
    .campaign-hero__seal {
        opacity: 0.35;
        right: 28px;
    }

    .campaign-banners {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .campaign-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .campaign-page {
        width: min(100% - 24px, 1180px);
        margin-top: 18px;
    }

    .campaign-hero {
        min-height: 490px;
        padding: 44px 27px;
        align-items: flex-start;
    }

    .campaign-hero h1 {
        font-size: 43px;
        letter-spacing: -1.5px;
    }

    .campaign-hero__seal {
        right: 24px;
        top: auto;
        bottom: 26px;
        width: 125px;
        height: 125px;
        transform: rotate(-8deg);
    }

    .campaign-banners,
    .campaign-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .campaign-banner-card {
        min-height: 205px;
        padding: 23px;
    }

    .campaign-banner-card__copy {
        max-width: 88%;
    }

    .campaign-banner-card__copy h2 {
        font-size: 18px;
    }

    .campaign-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 440px) {
    .campaign-product-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .campaign-hero::before,
    .campaign-hero__glow,
    .campaign-hero__seal,
    .campaign-hero__cta i,
    .campaign-banner-card::before,
    .campaign-product-discount {
        animation: none !important;
    }
}

/* Keep premium homepage rules above legacy theme declarations in the cascade. */
body .hero-slider {
    height: clamp(520px, 66vw, 640px);
}

.hero-slider .slide-content {
    max-width: var(--max-width);
}

.hero-slider .slide-content h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.04;
}

.hero-slider .slide-content p {
    font-size: 16px;
}

body .features-bar {
    margin: 0;
    padding: 24px 0;
    background: #fffdf9;
}

.features-bar .features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.features-bar .feature-item i {
    margin-bottom: 7px;
    font-size: 23px;
}

.features-bar .feature-item img {
    height: 23px;
    max-width: 66px;
    margin-bottom: 7px;
}

.features-bar .feature-item h5 {
    margin-bottom: 2px;
    font-size: 13px;
}

.features-bar .feature-item p {
    font-size: 11px;
}

.category-grid.category-grid--editorial {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 260px;
    gap: 18px;
    margin-bottom: 0;
}

.category-grid.category-grid--editorial .category-card--1 {
    grid-row: auto;
}

.category-grid.category-grid--editorial .category-card--2 {
    grid-column: auto;
}

body .home-categories {
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-categories .home-section-heading,
.home-categories .category-grid--editorial {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

body .home-promo-wrap {
    padding-top: 110px;
}

body .home-product-section {
    padding-top: 120px;
}

.home-tone-spacing {
    padding-bottom: 72px;
}

.home-tone-surface {
    position: relative;
    z-index: 0;
}

.home-tone-surface::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    border-top: 1px solid rgba(143, 123, 90, 0.08);
    border-bottom: 1px solid rgba(143, 123, 90, 0.08);
}

.home-tone-surface--beige::before {
    background: #f4f0e9;
}

.home-tone-surface--white::before {
    background: #fffdf9;
}

/* Alternating full-width surfaces keep homepage sections visually distinct. */
.home-block-surface {
    position: relative;
    z-index: 0;
    isolation: isolate;
}

.home-block-surface::after {
    position: absolute;
    z-index: -2;
    inset: 0 auto 0 50%;
    width: 100vw;
    border-top: 1px solid rgba(143, 123, 90, 0.075);
    border-bottom: 1px solid rgba(143, 123, 90, 0.075);
    content: '';
    pointer-events: none;
    transform: translateX(-50%);
}

.home-block-surface--linen::after {
    background: var(--home-linen-surface);
}

.home-block-surface--sage::after {
    background:
        radial-gradient(circle at 88% 20%, rgba(78, 94, 78, 0.055), transparent 28%),
        #f0f3ee;
}

.home-block-surface--ivory::after {
    background: #fffdf9;
}

.home-block-surface.home-tone-surface::before {
    z-index: -2;
    background: transparent;
}

.home-block-surface.home-tone-surface::after {
    z-index: -1;
}

/* Service cards and the B2B banner form one continuous homepage surface. */
.home-services.home-block-surface::after {
    top: -64px;
    bottom: -58px;
    border-top: 0;
    border-bottom: 0;
    background: var(--home-linen-surface);
}

.home-corporate-banner.home-block-surface::after {
    bottom: -120px;
    border-top: 0;
    border-bottom: 0;
    background: var(--home-linen-surface);
}

/* Keep every homepage module visually centered inside its full-width surface. */
.home-block-surface > .home-section-heading,
.home-block-surface > .section-title {
    text-align: center;
}

.home-product-section .product-info {
    align-items: center;
    text-align: center;
}

.home-product-section .product-price-row {
    width: 100%;
    justify-content: center;
}

.home-product-section .product-starting-price {
    align-self: center;
}

.home-categories .category-card-copy {
    justify-content: center;
    text-align: center;
}

.home-categories .category-card-copy h4 {
    text-align: center;
}

.home-promo-wrap .home-promo-copy,
.home-promo-wrap .home-promo-copy__line {
    justify-content: center;
    text-align: center;
}

.home-brand-story__copy {
    text-align: center;
}

.home-brand-story__facts {
    justify-content: center;
}

.home-service-card__copy {
    align-items: center;
    text-align: center;
}

.home-corporate-banner__inner {
    text-align: center;
}

.home-corporate-banner__inner p {
    margin-right: auto;
    margin-left: auto;
}

.home-blog-section article {
    text-align: center;
}

.home-block-surface--mist::after {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 48%),
        #eeeae3;
}

.home-tone-spacing + .home-brand-story {
    padding-top: 72px;
}

.home-tone-spacing + .home-services {
    margin-top: 72px;
}

.home-product-section .product-grid {
    gap: 28px;
}

body .home-brand-story {
    padding-top: 130px;
}

.home-blog-section {
    padding-top: 125px;
    margin-bottom: 0;
}

.home-blog-section .section-title {
    margin-top: 0;
    margin-bottom: 46px;
}

body .home-services {
    margin-top: 64px;
}

body .home-corporate-banner {
    margin-top: 56px;
    margin-bottom: 120px;
}

@media (max-width: 900px) {
    .home-services.home-block-surface::after {
        top: -58px;
        bottom: -54px;
    }

    .home-corporate-banner.home-block-surface::after {
        bottom: -100px;
    }

    .features-bar .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 0;
    }

    .category-grid.category-grid--editorial {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        grid-auto-rows: 240px;
    }

    body .home-categories,
    body .home-product-section {
        padding-top: 96px;
    }

    body .home-categories {
        padding-bottom: 96px;
    }

    .home-tone-spacing {
        padding-bottom: 64px;
    }

    .home-tone-spacing + .home-brand-story {
        padding-top: 64px;
    }

    .home-tone-spacing + .home-services {
        margin-top: 64px;
    }

    body .home-promo-wrap {
        padding-top: 88px;
    }

    body .home-brand-story,
    .home-blog-section {
        padding-top: 104px;
    }

    body .home-services {
        margin-top: 58px;
    }

    body .home-corporate-banner {
        margin-top: 54px;
        margin-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .home-services.home-block-surface::after {
        top: -52px;
        bottom: -48px;
    }

    .home-corporate-banner.home-block-surface::after {
        bottom: -84px;
    }

    body .hero-slider {
        height: 560px;
    }

    .hero-slider .slide-content h2 {
        font-size: 38px;
    }

    .hero-slider .slide-content p {
        font-size: 14px;
    }

    body .features-bar {
        padding: 20px 0;
    }

    .features-bar .feature-item p {
        display: none;
    }

    .category-grid.category-grid--editorial {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        grid-auto-rows: 190px;
        gap: 10px;
    }

    body .home-categories,
    body .home-product-section {
        padding-top: 80px;
    }

    body .home-categories {
        padding-bottom: 80px;
    }

    .home-tone-spacing {
        padding-bottom: 48px;
    }

    .home-tone-spacing + .home-brand-story {
        padding-top: 48px;
    }

    .home-tone-spacing + .home-services {
        margin-top: 48px;
    }

    body .home-promo-wrap {
        padding-top: 72px;
    }

    body .home-brand-story,
    .home-blog-section {
        padding-top: 84px;
    }

    .home-product-section .product-grid {
        gap: 18px 14px;
    }

    .home-blog-section .section-title {
        margin-bottom: 34px;
    }

    body .home-services {
        margin-top: 52px;
    }

    body .home-corporate-banner {
        margin-top: 48px;
        margin-bottom: 84px;
    }
}

@media (max-width: 520px) {
    .category-grid.category-grid--editorial {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }
    .category-page-banner {
        min-height: 310px;
    }
    .category-page-banner__content {
        width: 100%;
        padding: 38px 26px;
    }
    .category-page-banner__overlay {
        background: linear-gradient(90deg, rgba(25, 29, 25, 0.8), rgba(25, 29, 25, 0.35));
    }
}

@media (max-width: 1100px) {
    .product-grid.catalog-product-grid--category {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .catalog-page {
        margin-top: 24px;
        margin-bottom: 60px;
    }

    .catalog-layout {
        flex-direction: column;
        gap: 30px;
    }

    .catalog-sidebar,
    .catalog-main {
        width: 100%;
    }

    .catalog-sidebar {
        flex-basis: auto;
    }

    .catalog-toolbar {
        align-items: flex-start;
    }

    .category-catalog-page .category-page-banner,
    .category-catalog-page .category-page-banner__content {
        min-height: 240px;
    }

    .category-catalog-page .category-page-banner {
        margin-bottom: 28px;
        box-shadow: 0 18px 46px rgba(38, 45, 38, 0.1);
    }

    .catalog-toolbar--category {
        min-height: 0;
        padding: 22px;
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-toolbar--category .catalog-sort {
        justify-content: space-between;
        padding-top: 18px;
        border-top: 1px solid rgba(143, 123, 90, 0.12);
    }

    .product-grid.catalog-product-grid--category {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
    }

    .product-card--category .product-info {
        padding: 16px 14px 15px;
    }
}

@media (max-width: 520px) {
    .category-catalog-page .category-page-banner,
    .category-catalog-page .category-page-banner__content {
        min-height: 215px;
    }

    .category-catalog-page .category-page-banner__content {
        padding: 26px 22px;
    }

    .category-catalog-page .category-page-banner h1 {
        font-size: 29px;
    }

    .category-catalog-page .category-page-banner p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .catalog-toolbar--category .catalog-sort select {
        width: 152px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .category-catalog-page .category-page-banner__image {
        animation: none;
    }
}

.wishlist-toggle {
    position: relative !important;
    overflow: visible !important;
    isolation: isolate;
}

.wishlist-toggle > i {
    position: relative;
    z-index: 2;
    transition: color 0.2s ease, transform 0.2s ease;
}

.wishlist-toggle--pop > i {
    animation: wishlistHeartPop 0.48s cubic-bezier(0.2, 0.9, 0.25, 1.35);
}

.wishlist-heart-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    color: #d9534f;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    animation: wishlistHeartBurst 0.72s cubic-bezier(0.16, 0.82, 0.35, 1) var(--heart-delay, 0ms) forwards;
}

@keyframes wishlistHeartPop {
    0%,
    100% {
        transform: scale(1);
    }
    45% {
        transform: scale(1.42);
    }
    70% {
        transform: scale(0.9);
    }
}

@keyframes wishlistHeartBurst {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.25) rotate(0deg);
    }
    18% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(
            calc(-50% + var(--heart-x)),
            calc(-50% + var(--heart-y))
        ) scale(1) rotate(var(--heart-rotation));
    }
}

@media (prefers-reduced-motion: reduce) {
    .wishlist-toggle--pop > i {
        animation: none;
    }

    .wishlist-heart-particle {
        display: none;
    }

    .price,
    .product-starting-price,
    .price::after,
    .product-starting-price::after {
        transition: none;
    }

    .home-promo-strip,
    .home-promo-strip::before,
    .home-promo-strip::after,
    .home-promo-icon {
        animation: none;
    }
}

@media (max-width: 640px) {
    .home-promo-strip {
        grid-template-columns: auto 1fr;
        gap: 16px;
        min-height: 0;
        padding: 22px 20px;
    }

    .home-promo-icon {
        width: 54px;
        height: 54px;
    }

    .home-promo-copy__line {
        display: block;
    }

    .home-promo-copy p {
        margin-top: 6px;
        line-height: 1.5;
    }

    .home-promo-strip .home-promo-cta {
        grid-column: 1 / -1;
        justify-content: center;
        width: 100%;
        margin-top: 3px;
    }
}

/* Two-tier storefront header */
header {
    color: var(--primary);
    background: #fff;
    border-bottom-color: rgba(78, 94, 78, 0.12);
    box-shadow: 0 8px 24px rgba(38, 45, 38, 0.07);
}

header .site-logo-image {
    filter: brightness(0) saturate(100%) invert(34%) sepia(11%) saturate(760%) hue-rotate(83deg) brightness(91%) contrast(88%);
}

.header-nav-shell {
    background: linear-gradient(180deg, #fbfaf7, #f7f5f0);
    border-top: 1px solid rgba(78, 94, 78, 0.08);
    border-bottom: 1px solid rgba(78, 94, 78, 0.1);
}

.header-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.header-cart-link i {
    color: var(--primary);
    font-size: 19px;
}

.header-cart-link:hover {
    color: var(--secondary);
}

.header-cart-link:hover i {
    color: var(--secondary);
}

@media (min-width: 992px) {
    .header-main {
        display: grid;
        grid-template-columns: 170px minmax(340px, 620px) auto;
        gap: clamp(28px, 4vw, 64px);
        min-height: 92px;
        padding: 15px 20px;
    }

    .header-main .logo {
        justify-self: start;
    }

    .header-main .site-logo-image {
        width: 130px;
        height: 52px;
    }

    .header-search--desktop {
        justify-self: center;
        width: 100%;
        min-width: 0;
        max-width: 620px;
        height: 46px;
        margin: 0;
        border-color: rgba(78, 94, 78, 0.32);
        background: #f4f3ef;
        box-shadow: inset 0 1px 2px rgba(38, 45, 38, 0.04);
    }

    .header-search--desktop:focus-within {
        border-color: var(--primary);
        background: #fff;
        box-shadow: 0 10px 26px rgba(78, 94, 78, 0.12);
    }

    .header-search--desktop input[type="search"] {
        padding-left: 19px;
        color: var(--primary);
        font-size: 13px;
    }

    .header-search--desktop input[type="search"]::placeholder {
        color: rgba(78, 94, 78, 0.55);
    }

    .header-search--desktop input[type="search"]::-webkit-search-cancel-button {
        filter: none;
    }

    .header-search--desktop button {
        flex-basis: 102px;
        width: 102px;
        height: 44px;
        margin: 0;
        border-radius: 999px;
        color: #fff;
        background: linear-gradient(135deg, var(--primary), #627463);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .header-search--desktop button:hover {
        color: #fff;
        background: linear-gradient(135deg, var(--secondary), #a48a61);
        box-shadow: 0 9px 20px rgba(143, 123, 90, 0.2);
        transform: none;
    }

    .header-actions {
        justify-self: end;
        gap: 17px;
    }

    .member-action-btn {
        padding: 10px 8px;
        border-radius: 8px;
        color: var(--primary);
        background: transparent;
        border-color: transparent;
        box-shadow: none;
    }

    .member-action-btn--solid,
    .member-action-btn--ghost,
    .member-action-btn--wishlist {
        color: var(--primary);
        background: transparent;
        border-color: transparent;
        box-shadow: none;
    }

    .member-action-btn--solid:hover,
    .member-action-btn--ghost:hover,
    .member-action-btn--wishlist:hover {
        color: var(--secondary);
        background: rgba(143, 123, 90, 0.08);
        border-color: transparent;
        box-shadow: none;
        transform: none;
    }

    .member-action-btn--wishlist i {
        color: #a74848;
        transition: color 0.22s ease, transform 0.22s ease;
    }

    .member-action-btn--wishlist:hover i {
        color: #cf5151;
        transform: scale(1.12);
    }

    .main-nav-wrapper {
        display: block;
    }

    .header-nav-shell .nav-menu {
        justify-content: center;
        gap: clamp(25px, 3vw, 44px);
        min-height: 51px;
    }

    .header-nav-shell .nav-menu > li > a {
        padding: 17px 0 15px;
        color: var(--primary);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.1px;
    }

    .header-nav-shell .nav-menu > li > a::after {
        bottom: 9px;
        height: 1px;
        background: var(--secondary);
    }

    .header-nav-shell .nav-menu > li > a:hover {
        color: var(--secondary);
    }

    .header-nav-shell .nav-item-icon {
        color: var(--secondary);
    }
}

@media (max-width: 991px) {
    .header-main {
        min-height: 72px;
        padding: 10px 20px;
    }

    .header-nav-shell {
        display: none;
    }

    .header-cart-label {
        display: none;
    }

    .header-cart-link {
        font-size: 19px;
    }

    .mobile-menu-btn {
        color: var(--primary) !important;
    }

    .header-search--mobile button {
        flex-basis: 70px;
        width: 70px;
        border-radius: 999px;
        color: #fff;
        background: var(--primary);
    }

    .header-search--mobile button:hover {
        color: #fff;
        background: var(--secondary);
        transform: none;
    }
}

/* Premium top utility navigation */
.top-bar {
    padding: 7px 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.025), transparent 28%, rgba(255,255,255,0.025)),
        var(--primary);
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.07);
}

.top-bar-utility {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-premium-nav {
    position: relative;
    padding-right: 18px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.top-bar-premium-nav::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%);
}

.top-bar-premium-nav a {
    position: relative;
    padding: 5px 11px;
    border-radius: 999px;
    color: rgba(255,255,255,0.82);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.top-bar-premium-nav a::before {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 2px;
    height: 1px;
    background: #e6c98f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.top-bar-premium-nav a:hover {
    color: #f1d7a5;
    background: rgba(255,255,255,0.055);
    transform: translateY(-1px);
}

.top-bar-premium-nav a:hover::before {
    transform: scaleX(1);
}

.top-bar-premium-nav .top-bar-dropshipping-link {
    isolation: isolate;
    margin: 0 3px;
    padding: 6px 9px 6px 10px;
    border: 1px solid rgba(230,201,143,0.42);
    gap: 6px;
    overflow: hidden;
    color: #f4dba9;
    background: linear-gradient(110deg, rgba(230,201,143,0.08), rgba(230,201,143,0.2));
    box-shadow: 0 0 0 0 rgba(230,201,143,0.2);
    animation: dropshippingMenuPulse 3.4s ease-in-out infinite;
}

.top-bar-premium-nav .top-bar-dropshipping-link::before {
    display: none;
}

.top-bar-premium-nav .top-bar-dropshipping-link::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -45%;
    bottom: -45%;
    left: -45%;
    width: 28%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-22deg);
    animation: dropshippingMenuShine 4.2s ease-in-out infinite;
}

.top-bar-premium-nav .top-bar-dropshipping-link > i {
    font-size: 9px;
    animation: dropshippingMenuIcon 2.8s ease-in-out infinite;
}

.top-bar-premium-nav .top-bar-dropshipping-link small {
    padding: 2px 4px;
    border-radius: 999px;
    color: var(--primary);
    background: #e6c98f;
    font-size: 6px;
    font-weight: 900;
    letter-spacing: 0.4px;
    line-height: 1;
}

.top-bar-premium-nav .top-bar-dropshipping-link:hover {
    color: #fff;
    border-color: #e6c98f;
    background: rgba(230,201,143,0.2);
    box-shadow: 0 5px 16px rgba(0,0,0,0.12);
}

@keyframes dropshippingMenuPulse {
    0%, 70%, 100% { box-shadow: 0 0 0 0 rgba(230,201,143,0); }
    82% { box-shadow: 0 0 0 4px rgba(230,201,143,0.1); }
}

@keyframes dropshippingMenuShine {
    0%, 48% { left: -45%; opacity: 0; }
    58% { opacity: 1; }
    74%, 100% { left: 125%; opacity: 0; }
}

@keyframes dropshippingMenuIcon {
    0%, 72%, 100% { transform: translateY(0); }
    80% { transform: translateY(-2px); }
    88% { transform: translateY(0); }
}

.top-bar-utility .language-switcher {
    margin-left: 0 !important;
}

@media (max-width: 820px) {
    .top-bar-content {
        gap: 10px;
    }

    .top-bar-contact-links a:not(:last-child) {
        display: none;
    }

    .top-bar-contact-links a:last-child {
        padding: 0;
    }

    .top-bar-utility {
        gap: 7px;
    }

    .top-bar-premium-nav {
        padding-right: 8px;
        gap: 0;
    }

    .top-bar-premium-nav a {
        padding: 4px 6px;
        font-size: 9px;
        letter-spacing: 0.25px;
    }

    .top-bar-premium-nav .top-bar-dropshipping-link {
        margin: 0 1px;
        padding: 5px 7px;
    }

    .top-bar-premium-nav .top-bar-dropshipping-link small {
        display: none;
    }

    .top-bar-premium-nav a::before,
    .top-bar-premium-nav::after,
    .top-bar-social {
        display: none;
    }

    .top-bar-utility .language-switcher-btn {
        padding: 2px !important;
        font-size: 10px !important;
    }
}

@media (max-width: 480px) {
    .top-bar-content {
        padding-right: 12px;
        padding-left: 12px;
    }

    .top-bar-contact-links {
        display: none;
    }

    .top-bar-utility {
        width: 100%;
        justify-content: space-between;
    }

    .top-bar-premium-nav {
        margin-right: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .top-bar-premium-nav a,
    .top-bar-premium-nav a::before {
        transition: none;
    }

    .top-bar-premium-nav .top-bar-dropshipping-link,
    .top-bar-premium-nav .top-bar-dropshipping-link::after,
    .top-bar-premium-nav .top-bar-dropshipping-link > i {
        animation: none;
    }
}

.mobile-dropshipping-link > a {
    min-height: 48px;
    padding: 10px 13px !important;
    border: 1px solid rgba(155,128,84,0.32);
    border-radius: 10px;
    display: flex !important;
    align-items: center;
    gap: 9px;
    color: var(--primary) !important;
    background: linear-gradient(105deg, rgba(155,128,84,0.08), rgba(155,128,84,0.17));
}

.mobile-dropshipping-link > a > i {
    color: var(--secondary);
}

.mobile-dropshipping-link > a > small {
    margin-left: auto;
    padding: 4px 7px;
    border-radius: 999px;
    color: #fff;
    background: var(--secondary);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

/* Logo printed corporate textile production */
.logo-production-page {
    width: min(1180px, calc(100% - 40px));
    margin: 38px auto 90px;
}

.logo-production-kicker {
    display: inline-flex;
    color: #a58a5c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-production-hero {
    min-height: 650px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    border-radius: 20px;
    color: #fff;
    background:
        radial-gradient(circle at 26% 12%, rgba(222,190,134,0.13), transparent 25%),
        #213a30;
    box-shadow: 0 28px 70px rgba(26, 48, 38, 0.18);
}

.logo-production-hero__copy {
    position: relative;
    z-index: 3;
    padding: clamp(52px, 7vw, 86px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-production-hero .logo-production-kicker {
    color: #e4c994;
}

.logo-production-hero h1 {
    margin: 20px 0 24px;
    color: #fff;
    font-size: clamp(47px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -3.2px;
}

.logo-production-hero h1 em {
    color: #e4c994;
    font-style: normal;
}

.logo-production-hero__copy > p {
    max-width: 570px;
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.85;
}

.logo-production-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 31px;
}

.logo-production-button {
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.logo-production-button:hover {
    transform: translateY(-3px);
}

.logo-production-button--primary {
    color: #213a30;
    background: #f0dab2;
}

.logo-production-button--primary:hover {
    color: #213a30;
    background: #fff;
}

.logo-production-button--ghost {
    border-color: rgba(255,255,255,0.32);
    color: #fff;
    background: rgba(255,255,255,0.04);
}

.logo-production-button--ghost:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.logo-production-hero__gallery {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #152c23;
}

.logo-production-hero__gallery::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(33,58,48,0.45), transparent 32%);
}

.logo-production-hero__image {
    position: absolute;
    overflow: hidden;
    margin: 0;
    border: 4px solid rgba(255,255,255,0.08);
    border-radius: 13px;
    box-shadow: 0 24px 55px rgba(0,0,0,0.26);
}

.logo-production-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.2,.8,.2,1);
}

.logo-production-hero:hover .logo-production-hero__image img {
    transform: scale(1.035);
}

.logo-production-hero__image--main {
    z-index: 2;
    left: 8%;
    bottom: -3%;
    width: 47%;
    height: 78%;
    transform: rotate(-2deg);
}

.logo-production-hero__image--top {
    top: 6%;
    right: -5%;
    width: 62%;
    height: 42%;
    transform: rotate(2deg);
}

.logo-production-hero__image--bottom {
    right: -5%;
    bottom: 3%;
    width: 57%;
    height: 42%;
    transform: rotate(-1deg);
}

.logo-production-hero__stamp {
    position: absolute;
    z-index: 4;
    left: 45%;
    top: 43%;
    width: 118px;
    height: 118px;
    border: 1px solid rgba(236,208,158,0.65);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #efd5a5;
    background: rgba(29,52,42,0.9);
    box-shadow: inset 0 0 0 7px rgba(255,255,255,0.04), 0 15px 36px rgba(0,0,0,0.2);
    transform: rotate(-8deg);
    animation: logoProductionStamp 5s ease-in-out infinite;
}

.logo-production-hero__stamp strong {
    font-size: 18px;
    letter-spacing: 1px;
}

.logo-production-hero__stamp small {
    margin-top: 3px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.logo-production-stats {
    position: relative;
    z-index: 5;
    width: calc(100% - 72px);
    min-height: 102px;
    margin: -25px auto 0;
    padding: 20px 25px;
    border: 1px solid rgba(143,123,90,0.18);
    border-radius: 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: rgba(255,255,255,0.97);
    box-shadow: 0 18px 45px rgba(35,55,46,0.1);
}

.logo-production-stats > div {
    padding: 6px 22px;
    border-right: 1px solid rgba(143,123,90,0.18);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-production-stats > div:last-child {
    border-right: 0;
}

.logo-production-stats strong {
    color: #294238;
    font-size: 19px;
}

.logo-production-stats span {
    margin-top: 4px;
    color: #887f73;
    font-size: 11px;
}

.logo-production-success {
    margin: 28px 0 -18px;
    padding: 15px 18px;
    border: 1px solid rgba(56,139,94,0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #296843;
    background: #eef8f1;
    font-size: 13px;
    font-weight: 650;
}

.logo-production-section {
    padding-top: 105px;
}

.logo-production-heading {
    max-width: 740px;
    margin: 0 auto 42px;
    text-align: center;
}

.logo-production-heading--left {
    margin: 0 0 35px;
    text-align: left;
}

.logo-production-heading h2,
.logo-production-quality__copy h2,
.logo-production-quote__content h2 {
    margin: 10px 0 15px;
    color: #294238;
    font-size: clamp(34px, 4.7vw, 52px);
    line-height: 1.05;
    letter-spacing: -1.8px;
}

.logo-production-heading p,
.logo-production-quality__copy > p,
.logo-production-quote__content > p {
    margin: 0;
    color: #766f64;
    font-size: 14px;
    line-height: 1.8;
}

.logo-production-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.logo-production-product-card {
    min-width: 0;
    min-height: 440px;
    overflow: hidden;
    border: 1px solid rgba(143,123,90,0.18);
    border-radius: 15px;
    display: grid;
    grid-template-columns: 0.94fr 1.06fr;
    background: #faf7f1;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.logo-production-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(34,54,45,0.12);
}

.logo-production-product-card__media {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.logo-production-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(.2,.8,.2,1);
}

.logo-production-product-card:hover .logo-production-product-card__media img {
    transform: scale(1.05);
}

.logo-production-product-card__media > span {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 37px;
    height: 37px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(30,52,42,0.72);
    backdrop-filter: blur(8px);
    font-size: 9px;
    font-weight: 800;
}

.logo-production-product-card__copy {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-production-product-card__copy small {
    color: #a0865a;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.15px;
    text-transform: uppercase;
}

.logo-production-product-card__copy h3 {
    margin: 10px 0 12px;
    color: #294238;
    font-size: 23px;
    line-height: 1.18;
}

.logo-production-product-card__copy p {
    margin: 0;
    color: #756e64;
    font-size: 12px;
    line-height: 1.72;
}

.logo-production-product-card__copy ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 17px 0 0;
    border-top: 1px solid rgba(143,123,90,0.18);
}

.logo-production-product-card__copy li {
    position: relative;
    margin-top: 7px;
    padding-left: 16px;
    color: #5e655f;
    font-size: 11px;
}

.logo-production-product-card__copy li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 7px;
    height: 1px;
    background: #a28759;
}

.logo-production-product-card:not(.logo-production-product-card--table) .logo-production-product-card__media img {
    object-position: center;
}

.logo-production-product-card--shower .logo-production-product-card__media img {
    object-position: center;
}

.logo-production-process {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 55px;
    align-items: start;
}

.logo-production-process-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.logo-production-process-list li {
    position: relative;
    min-height: 225px;
    padding: 27px;
    border: 1px solid rgba(143,123,90,0.18);
    border-radius: 13px;
    background: #fff;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.logo-production-process-list li:hover {
    background: #faf7f1;
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(35,55,46,0.08);
}

.logo-production-process-list li > span {
    position: absolute;
    top: 22px;
    right: 23px;
    color: rgba(143,123,90,0.38);
    font-size: 10px;
    font-weight: 800;
}

.logo-production-process-list i {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #9a8053;
    background: #f0e9dd;
    font-size: 17px;
}

.logo-production-process-list h3 {
    margin: 25px 0 8px;
    color: #294238;
    font-size: 17px;
}

.logo-production-process-list p {
    margin: 0;
    color: #7a7368;
    font-size: 12px;
    line-height: 1.65;
}

.logo-production-quality {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 52px;
    align-items: center;
}

.logo-production-quality__visual {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border-radius: 16px;
    background: #ddd;
}

.logo-production-quality__visual::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, rgba(16,29,23,0.8));
}

.logo-production-quality__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-production-quality__visual > div {
    position: absolute;
    z-index: 2;
    left: 28px;
    bottom: 26px;
    color: #fff;
}

.logo-production-quality__visual strong,
.logo-production-quality__visual span {
    display: block;
}

.logo-production-quality__visual strong {
    font-size: 22px;
}

.logo-production-quality__visual span {
    margin-top: 4px;
    color: rgba(255,255,255,0.7);
    font-size: 11px;
}

.logo-production-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.logo-production-feature-grid > div {
    min-height: 145px;
    padding: 21px;
    border: 1px solid rgba(143,123,90,0.18);
    border-radius: 12px;
    background: #faf7f1;
}

.logo-production-feature-grid i,
.logo-production-feature-grid strong,
.logo-production-feature-grid span {
    display: block;
}

.logo-production-feature-grid i {
    margin-bottom: 16px;
    color: #a08559;
    font-size: 18px;
}

.logo-production-feature-grid strong {
    color: #294238;
    font-size: 14px;
}

.logo-production-feature-grid span {
    margin-top: 5px;
    color: #847c70;
    font-size: 10px;
    line-height: 1.5;
}

.logo-production-sector-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.logo-production-sector-list span {
    padding: 11px 17px;
    border: 1px solid rgba(143,123,90,0.22);
    border-radius: 999px;
    color: #43544c;
    background: #fff;
    font-size: 11px;
    font-weight: 700;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.logo-production-sector-list span:hover {
    color: #fff;
    background: #294238;
    transform: translateY(-2px);
}

.logo-production-quote {
    scroll-margin-top: 25px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 55px;
    align-items: start;
    padding: 65px;
    margin-top: 105px;
    border-radius: 18px;
    color: #fff;
    background:
        radial-gradient(circle at 5% 5%, rgba(226,193,135,0.15), transparent 26%),
        #213a30;
}

.logo-production-quote__content {
    padding-top: 16px;
}

.logo-production-quote__content .logo-production-kicker {
    color: #e1c58f;
}

.logo-production-quote__content h2 {
    color: #fff;
}

.logo-production-quote__content > p {
    color: rgba(255,255,255,0.67);
}

.logo-production-quote__steps {
    margin: 31px 0;
    padding: 23px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.logo-production-quote__steps > div {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    align-items: center;
}

.logo-production-quote__steps > div > span {
    width: 29px;
    height: 29px;
    border: 1px solid rgba(229,201,148,0.38);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #e4c994;
    font-size: 9px;
    font-weight: 800;
}

.logo-production-quote__steps p,
.logo-production-quote__steps strong {
    display: block;
    margin: 0;
}

.logo-production-quote__steps p {
    color: rgba(255,255,255,0.55);
    font-size: 10px;
}

.logo-production-quote__steps strong {
    margin-bottom: 2px;
    color: #fff;
    font-size: 12px;
}

.logo-production-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.logo-production-whatsapp > i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: #25b95c;
    font-size: 20px;
}

.logo-production-whatsapp span,
.logo-production-whatsapp small {
    display: block;
}

.logo-production-whatsapp span {
    font-size: 12px;
    font-weight: 750;
}

.logo-production-whatsapp small {
    margin-bottom: 2px;
    color: rgba(255,255,255,0.5);
    font-size: 9px;
    font-weight: 500;
}

.logo-production-form-card {
    position: relative;
    padding: 31px;
    border-radius: 14px;
    color: #294238;
    background: #f8f4ed;
    box-shadow: 0 22px 55px rgba(0,0,0,0.18);
}

.logo-production-form-card__number {
    position: absolute;
    top: 25px;
    right: 27px;
    color: #aa987a;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-production-form-card h3 {
    margin: 0 0 22px;
    color: #294238;
    font-size: 24px;
}

.logo-production-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.logo-production-form-card .form-group {
    margin-bottom: 12px;
}

.logo-production-form-card label:not(.logo-production-file) {
    display: block;
    margin-bottom: 5px;
    color: #495a52;
    font-size: 10px;
    font-weight: 700;
}

.logo-production-form-card .form-control {
    min-height: 43px;
    border-color: rgba(143,123,90,0.25);
    border-radius: 8px;
    background: rgba(255,255,255,0.85);
    font-size: 11px;
}

.logo-production-form-card textarea.form-control {
    min-height: 96px;
    resize: vertical;
}

.logo-production-form-card .form-control:focus {
    border-color: #9b8054;
    box-shadow: 0 0 0 3px rgba(155,128,84,0.12);
}

.logo-production-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.logo-production-file {
    min-height: 70px;
    padding: 13px;
    border: 1px dashed rgba(143,123,90,0.4);
    border-radius: 9px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    background: rgba(255,255,255,0.55);
    transition: border-color 0.25s ease, background 0.25s ease;
}

.logo-production-file:hover {
    border-color: #9b8054;
    background: #fff;
}

.logo-production-file > i {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #947849;
    background: #eee4d4;
}

.logo-production-file span,
.logo-production-file strong,
.logo-production-file small {
    display: block;
}

.logo-production-file strong {
    color: #294238;
    font-size: 11px;
}

.logo-production-file small,
.logo-production-file-name {
    color: #938a7d;
    font-size: 9px;
}

.logo-production-file-name {
    display: block;
    margin-top: 5px;
}

.logo-production-submit {
    width: 100%;
    min-height: 47px;
    padding: 12px 17px;
    border: 0;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    color: #fff;
    background: #294238;
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease;
}

.logo-production-submit:hover {
    background: #9b8054;
    transform: translateY(-2px);
}

.logo-production-faq {
    max-width: 920px;
    margin: 0 auto;
}

.logo-production-faq-list {
    border-top: 1px solid rgba(143,123,90,0.2);
}

.logo-production-faq-list details {
    border-bottom: 1px solid rgba(143,123,90,0.2);
}

.logo-production-faq-list summary {
    min-height: 70px;
    padding: 20px 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
    list-style: none;
    color: #294238;
    font-size: 14px;
    font-weight: 750;
}

.logo-production-faq-list summary::-webkit-details-marker {
    display: none;
}

.logo-production-faq-list summary i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: #9b8054;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.logo-production-faq-list details[open] summary i {
    transform: rotate(45deg);
}

.logo-production-faq-list details p {
    max-width: 760px;
    margin: -4px 0 0;
    padding: 0 3px 23px;
    color: #776f64;
    font-size: 12px;
    line-height: 1.75;
}

@keyframes logoProductionStamp {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50% { transform: rotate(-4deg) translateY(-7px); }
}

@media (max-width: 980px) {
    .logo-production-hero {
        min-height: 590px;
        grid-template-columns: 1fr 0.9fr;
    }

    .logo-production-hero__copy {
        padding: 48px;
    }

    .logo-production-hero h1 {
        font-size: 55px;
    }

    .logo-production-product-card {
        grid-template-columns: 1fr;
        grid-template-rows: 260px auto;
    }

    .logo-production-process,
    .logo-production-quality,
    .logo-production-quote {
        grid-template-columns: 1fr;
    }

    .logo-production-quality__visual {
        min-height: 500px;
    }

    .logo-production-quote {
        padding: 48px;
    }
}

@media (max-width: 720px) {
    .logo-production-page {
        width: calc(100% - 24px);
        margin-top: 18px;
    }

    .logo-production-hero {
        min-height: 850px;
        grid-template-columns: 1fr;
        grid-template-rows: auto 390px;
    }

    .logo-production-hero__copy {
        padding: 42px 27px;
    }

    .logo-production-hero h1 {
        font-size: 48px;
        letter-spacing: -2.2px;
    }

    .logo-production-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .logo-production-hero__stamp {
        left: 42%;
        width: 92px;
        height: 92px;
    }

    .logo-production-stats {
        width: calc(100% - 22px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 14px;
    }

    .logo-production-stats > div {
        padding: 13px;
    }

    .logo-production-stats > div:nth-child(2) {
        border-right: 0;
    }

    .logo-production-stats > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(143,123,90,0.18);
    }

    .logo-production-section {
        padding-top: 78px;
    }

    .logo-production-heading {
        margin-bottom: 30px;
        text-align: left;
    }

    .logo-production-product-grid,
    .logo-production-process-list {
        grid-template-columns: 1fr;
    }

    .logo-production-product-card {
        min-height: 0;
    }

    .logo-production-quality__visual {
        min-height: 430px;
    }

    .logo-production-feature-grid {
        grid-template-columns: 1fr;
    }

    .logo-production-quote {
        gap: 36px;
        padding: 38px 24px;
        margin-top: 78px;
    }

    .logo-production-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 450px) {
    .logo-production-hero__image--main {
        left: 4%;
        width: 52%;
    }

    .logo-production-hero__image--top,
    .logo-production-hero__image--bottom {
        right: -12%;
        width: 64%;
    }

    .logo-production-product-card__copy {
        padding: 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-production-hero__stamp {
        animation: none;
    }

    .logo-production-hero__image img,
    .logo-production-product-card__media img {
        transition: none;
    }
}

/* Wholesale B2B landing page */
.wholesale-page {
    --wholesale-green: #294238;
    --wholesale-green-deep: #1f332b;
    --wholesale-gold: #9b8054;
    --wholesale-cream: #f8f4ed;
    --wholesale-ink: #24352e;
    width: min(1220px, calc(100% - 42px));
    margin: 30px auto 0;
    color: var(--wholesale-ink);
}

.wholesale-kicker {
    display: block;
    margin-bottom: 14px;
    color: var(--wholesale-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.wholesale-hero {
    min-height: 610px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    overflow: hidden;
    background: var(--wholesale-green-deep);
}

.wholesale-hero__copy {
    position: relative;
    z-index: 2;
    padding: 78px 68px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}

.wholesale-hero__copy::after {
    content: "";
    position: absolute;
    right: -64px;
    bottom: -105px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(229,201,148,0.16);
    border-radius: 50%;
}

.wholesale-hero h1 {
    max-width: 600px;
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 0.98;
    letter-spacing: -3.2px;
}

.wholesale-hero h1 em {
    color: #e5c994;
    font-style: normal;
    font-weight: 500;
}

.wholesale-hero__copy > p {
    max-width: 500px;
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.85;
}

.wholesale-hero__actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.wholesale-button {
    min-height: 49px;
    padding: 13px 23px;
    border: 1px solid rgba(255,255,255,0.34);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.wholesale-button:hover {
    transform: translateY(-3px);
}

.wholesale-button--primary {
    border-color: #e5c994;
    color: var(--wholesale-green-deep);
    background: #e5c994;
}

.wholesale-button--primary:hover {
    background: #fff;
}

.wholesale-button--catalog {
    border-color: rgba(229,201,148,0.6);
    color: #e5c994;
    background: rgba(229,201,148,0.08);
}

.wholesale-button--catalog:hover {
    color: var(--wholesale-green-deep);
    background: #e5c994;
}

.wholesale-button--ghost:hover {
    color: var(--wholesale-green-deep);
    background: #fff;
}

.wholesale-hero__visual {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #d8d0c2;
}

.wholesale-hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(31,51,43,0.2), transparent 48%);
    pointer-events: none;
}

.wholesale-hero__image {
    position: absolute;
    margin: 0;
    overflow: hidden;
    box-shadow: 0 24px 55px rgba(0,0,0,0.22);
}

.wholesale-hero__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.2,.7,.2,1);
}

.wholesale-hero:hover .wholesale-hero__image--main img {
    transform: scale(1.035);
}

.wholesale-hero__image--main {
    inset: 0;
    box-shadow: none;
}

.wholesale-hero__image--detail {
    right: 28px;
    bottom: 28px;
    z-index: 2;
    width: 35%;
    height: 36%;
    border: 5px solid rgba(255,255,255,0.88);
    border-radius: 12px;
    animation: wholesaleFloat 5s ease-in-out infinite;
}

.wholesale-hero__badge {
    position: absolute;
    z-index: 3;
    left: 28px;
    bottom: 31px;
    padding: 13px 16px;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 10px;
    color: #fff;
    background: rgba(31,51,43,0.76);
    backdrop-filter: blur(10px);
    font-size: 10px;
}

.wholesale-hero__badge strong {
    display: block;
    margin-bottom: 2px;
    color: #e5c994;
    font-size: 18px;
}

.wholesale-stats {
    width: calc(100% - 60px);
    margin: -28px auto 0;
    position: relative;
    z-index: 4;
    padding: 15px;
    border: 1px solid rgba(143,123,90,0.16);
    border-radius: 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #fff;
    box-shadow: 0 20px 45px rgba(47,57,48,0.1);
}

.wholesale-stats > div {
    min-height: 75px;
    padding: 12px 20px;
    border-right: 1px solid rgba(143,123,90,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.wholesale-stats > div:last-child {
    border-right: 0;
}

.wholesale-stats strong,
.wholesale-stats span {
    display: block;
}

.wholesale-stats strong {
    color: var(--wholesale-green);
    font-size: 20px;
}

.wholesale-stats span {
    margin-top: 4px;
    color: #8e8579;
    font-size: 10px;
}

.wholesale-success {
    max-width: 900px;
    margin: 35px auto 0;
    padding: 16px 20px;
    border: 1px solid #b9d8c3;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #245e3d;
    background: #edf8f0;
    font-size: 12px;
    font-weight: 700;
}

.wholesale-section {
    padding-top: 112px;
}

.wholesale-heading {
    max-width: 680px;
    margin: 0 auto 43px;
    text-align: center;
}

.wholesale-heading--left {
    margin-left: 0;
    text-align: left;
}

.wholesale-heading h2 {
    margin: 0;
    color: var(--wholesale-green);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.wholesale-heading p {
    max-width: 590px;
    margin: 18px auto 0;
    color: #81796f;
    font-size: 13px;
    line-height: 1.75;
}

.wholesale-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.wholesale-benefit-grid article {
    position: relative;
    min-height: 285px;
    padding: 31px 27px;
    border: 1px solid rgba(143,123,90,0.18);
    border-radius: 13px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.wholesale-benefit-grid article:hover {
    transform: translateY(-7px);
    background: var(--wholesale-cream);
    box-shadow: 0 20px 40px rgba(47,57,48,0.1);
}

.wholesale-benefit-grid article > span {
    position: absolute;
    top: 22px;
    right: 22px;
    color: rgba(143,123,90,0.45);
    font-size: 10px;
    font-weight: 800;
}

.wholesale-benefit-grid article > i {
    width: 52px;
    height: 52px;
    margin-bottom: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--wholesale-green);
    font-size: 18px;
}

.wholesale-benefit-grid h3 {
    margin: 0 0 12px;
    color: var(--wholesale-green);
    font-size: 17px;
}

.wholesale-benefit-grid p {
    margin: 0;
    color: #81796f;
    font-size: 11px;
    line-height: 1.72;
}

.wholesale-category-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 14px;
}

.wholesale-category-card {
    position: relative;
    min-height: 440px;
    border-radius: 13px;
    overflow: hidden;
    color: #fff;
    background: var(--wholesale-green);
}

.wholesale-category-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.wholesale-category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(20,35,29,0.78), transparent 58%);
}

.wholesale-category-card:hover img {
    transform: scale(1.055);
}

.wholesale-category-card > span {
    position: absolute;
    z-index: 2;
    left: 27px;
    right: 27px;
    bottom: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 13px;
    color: #fff;
    font-size: 23px;
    font-weight: 700;
}

.wholesale-category-card small {
    display: block;
    margin-bottom: 5px;
    color: #e5c994;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wholesale-category-card i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.wholesale-category-card:hover i {
    transform: translateX(6px);
}

.wholesale-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
}

.wholesale-product-card {
    border: 1px solid rgba(143,123,90,0.16);
    border-radius: 12px;
    overflow: hidden;
    color: var(--wholesale-ink);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wholesale-product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 23px 45px rgba(47,57,48,0.12);
}

.wholesale-product-card__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #eee9e1;
}

.wholesale-product-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.wholesale-product-card:hover .wholesale-product-card__media img {
    transform: scale(1.045);
}

.wholesale-product-card__media > span {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(41,66,56,0.88);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.wholesale-product-card__copy {
    padding: 19px 18px 20px;
}

.wholesale-product-card__copy small {
    color: var(--wholesale-gold);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.wholesale-product-card__copy h3 {
    min-height: 42px;
    margin: 8px 0 17px;
    color: var(--wholesale-ink);
    font-size: 15px;
    line-height: 1.4;
}

.wholesale-product-card__copy > div {
    padding-top: 14px;
    border-top: 1px solid rgba(143,123,90,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.wholesale-product-card__copy strong {
    color: var(--wholesale-green);
    font-size: 14px;
}

.wholesale-product-card__copy div span {
    color: #8d8171;
    font-size: 9px;
    font-weight: 700;
}

.wholesale-process {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 76px;
    align-items: center;
}

.wholesale-process__visual {
    position: relative;
    min-height: 650px;
    border-radius: 14px;
    overflow: hidden;
}

.wholesale-process__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26,42,35,0.7), transparent 47%);
}

.wholesale-process__visual > img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.wholesale-process__visual > div {
    position: absolute;
    z-index: 2;
    left: 35px;
    right: 35px;
    bottom: 31px;
    color: #fff;
}

.wholesale-process__visual strong,
.wholesale-process__visual span {
    display: block;
}

.wholesale-process__visual strong {
    font-size: 22px;
}

.wholesale-process__visual span {
    margin-top: 5px;
    color: rgba(255,255,255,0.68);
    font-size: 11px;
}

.wholesale-process__copy h2 {
    margin: 0 0 35px;
    color: var(--wholesale-green);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.wholesale-process__copy ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wholesale-process__copy li {
    padding: 20px 0;
    border-top: 1px solid rgba(143,123,90,0.18);
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 17px;
}

.wholesale-process__copy li > span {
    width: 39px;
    height: 39px;
    border: 1px solid rgba(143,123,90,0.35);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--wholesale-gold);
    font-size: 9px;
    font-weight: 800;
}

.wholesale-process__copy h3 {
    margin: 1px 0 6px;
    color: var(--wholesale-green);
    font-size: 15px;
}

.wholesale-process__copy p {
    margin: 0;
    color: #81796f;
    font-size: 11px;
    line-height: 1.65;
}

.wholesale-sectors {
    padding-bottom: 20px;
}

.wholesale-sector-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.wholesale-sector-list span {
    padding: 13px 20px;
    border: 1px solid rgba(143,123,90,0.23);
    border-radius: 999px;
    color: var(--wholesale-green);
    background: #fff;
    font-size: 10px;
    font-weight: 700;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.wholesale-sector-list span:hover {
    color: #fff;
    background: var(--wholesale-green);
    transform: translateY(-3px);
}

.wholesale-quote {
    margin-top: 100px;
    padding: 70px;
    border-radius: 17px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 75px;
    align-items: center;
    color: #fff;
    background: var(--wholesale-green-deep);
}

.wholesale-quote__content h2 {
    max-width: 520px;
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.03;
    letter-spacing: -2.2px;
}

.wholesale-quote__content > p {
    max-width: 480px;
    margin: 0;
    color: rgba(255,255,255,0.62);
    font-size: 12px;
    line-height: 1.8;
}

.wholesale-quote__notes {
    margin: 31px 0;
    display: grid;
    gap: 13px;
}

.wholesale-quote__notes > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wholesale-quote__notes i {
    width: 29px;
    height: 29px;
    border: 1px solid rgba(229,201,148,0.35);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #e5c994;
    font-size: 9px;
}

.wholesale-quote__notes span,
.wholesale-quote__notes strong {
    display: block;
}

.wholesale-quote__notes span {
    color: rgba(255,255,255,0.5);
    font-size: 9px;
}

.wholesale-quote__notes strong {
    margin-bottom: 2px;
    color: #fff;
    font-size: 11px;
}

.wholesale-catalog-card {
    max-width: 480px;
    margin: 0 0 27px;
    padding: 14px 15px;
    border: 1px solid rgba(229,201,148,0.25);
    border-radius: 11px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.045);
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.wholesale-catalog-card:hover {
    border-color: rgba(229,201,148,0.55);
    background: rgba(255,255,255,0.075);
    transform: translateY(-2px);
}

.wholesale-catalog-card > i {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: var(--wholesale-green-deep);
    background: #e5c994;
    font-size: 15px;
}

.wholesale-catalog-card span,
.wholesale-catalog-card small,
.wholesale-catalog-card strong {
    display: block;
}

.wholesale-catalog-card small {
    margin-bottom: 3px;
    color: #e5c994;
    font-size: 9px;
    font-weight: 700;
}

.wholesale-catalog-card strong {
    color: #fff;
    font-size: 11px;
}

.wholesale-catalog-card > div {
    display: flex;
    gap: 6px;
}

.wholesale-catalog-card > div a {
    width: 31px;
    height: 31px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 9px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.wholesale-catalog-card > div a:hover {
    color: var(--wholesale-green-deep);
    background: #fff;
    transform: translateY(-2px);
}

.wholesale-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.wholesale-whatsapp > i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: #25b95c;
    font-size: 20px;
}

.wholesale-whatsapp span,
.wholesale-whatsapp small {
    display: block;
}

.wholesale-whatsapp span {
    font-size: 11px;
    font-weight: 750;
}

.wholesale-whatsapp small {
    margin-bottom: 2px;
    color: rgba(255,255,255,0.5);
    font-size: 9px;
    font-weight: 500;
}

.wholesale-form-card {
    position: relative;
    padding: 34px;
    border-radius: 14px;
    color: var(--wholesale-green);
    background: var(--wholesale-cream);
    box-shadow: 0 24px 58px rgba(0,0,0,0.2);
}

.wholesale-form-card__eyebrow {
    position: absolute;
    top: 27px;
    right: 29px;
    color: #aa987a;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.wholesale-form-card h3 {
    margin: 0 0 24px;
    color: var(--wholesale-green);
    font-size: 25px;
}

.wholesale-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

.wholesale-form-card .form-group {
    margin-bottom: 13px;
}

.wholesale-form-card label {
    display: block;
    margin-bottom: 5px;
    color: #4d5c55;
    font-size: 10px;
    font-weight: 700;
}

.wholesale-form-card .form-control {
    min-height: 45px;
    border-color: rgba(143,123,90,0.26);
    border-radius: 8px;
    background: rgba(255,255,255,0.88);
    font-size: 11px;
}

.wholesale-form-card textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.wholesale-form-card .form-control:focus {
    border-color: var(--wholesale-gold);
    box-shadow: 0 0 0 3px rgba(155,128,84,0.12);
}

.wholesale-submit {
    width: 100%;
    min-height: 49px;
    padding: 13px 18px;
    border: 0;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    cursor: pointer;
    color: #fff;
    background: var(--wholesale-green);
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease;
}

.wholesale-submit:hover {
    background: var(--wholesale-gold);
    transform: translateY(-2px);
}

.wholesale-faq {
    max-width: 920px;
    margin: 0 auto;
    padding-bottom: 110px;
}

.wholesale-faq-list {
    border-top: 1px solid rgba(143,123,90,0.2);
}

.wholesale-faq-list details {
    border-bottom: 1px solid rgba(143,123,90,0.2);
}

.wholesale-faq-list summary {
    min-height: 70px;
    padding: 20px 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    list-style: none;
    color: var(--wholesale-green);
    font-size: 14px;
    font-weight: 750;
}

.wholesale-faq-list summary::-webkit-details-marker {
    display: none;
}

.wholesale-faq-list summary i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: #fff;
    background: var(--wholesale-gold);
    font-size: 10px;
    transition: transform 0.3s ease;
}

.wholesale-faq-list details[open] summary i {
    transform: rotate(45deg);
}

.wholesale-faq-list details p {
    max-width: 760px;
    margin: -4px 0 0;
    padding: 0 3px 23px;
    color: #776f64;
    font-size: 12px;
    line-height: 1.75;
}

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

@media (max-width: 980px) {
    .wholesale-hero {
        min-height: 570px;
        grid-template-columns: 1fr 0.9fr;
    }

    .wholesale-hero__copy {
        padding: 55px 42px;
    }

    .wholesale-benefit-grid,
    .wholesale-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wholesale-category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wholesale-category-card--wide {
        grid-column: 1 / -1;
        min-height: 380px;
    }

    .wholesale-process,
    .wholesale-quote {
        grid-template-columns: 1fr;
    }

    .wholesale-process__visual {
        min-height: 540px;
    }

    .wholesale-quote {
        padding: 54px;
    }
}

@media (max-width: 720px) {
    .wholesale-page {
        width: calc(100% - 24px);
        margin-top: 18px;
    }

    .wholesale-hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto 440px;
    }

    .wholesale-hero__copy {
        padding: 46px 27px;
    }

    .wholesale-hero h1 {
        font-size: 47px;
        letter-spacing: -2px;
    }

    .wholesale-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .wholesale-stats {
        width: calc(100% - 22px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wholesale-stats > div:nth-child(2) {
        border-right: 0;
    }

    .wholesale-stats > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(143,123,90,0.18);
    }

    .wholesale-section {
        padding-top: 78px;
    }

    .wholesale-heading {
        margin-bottom: 31px;
        text-align: left;
    }

    .wholesale-heading p {
        margin-left: 0;
    }

    .wholesale-benefit-grid,
    .wholesale-product-grid,
    .wholesale-category-grid {
        grid-template-columns: 1fr;
    }

    .wholesale-benefit-grid article {
        min-height: 245px;
    }

    .wholesale-category-card,
    .wholesale-category-card--wide {
        min-height: 370px;
        grid-column: auto;
    }

    .wholesale-process {
        gap: 46px;
    }

    .wholesale-process__visual {
        min-height: 440px;
    }

    .wholesale-quote {
        gap: 40px;
        margin-top: 78px;
        padding: 40px 24px;
    }

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

@media (max-width: 450px) {
    .wholesale-hero__image--detail {
        width: 44%;
        height: 31%;
    }

    .wholesale-form-card {
        padding: 29px 20px;
    }

    .wholesale-form-card__eyebrow {
        position: static;
        display: block;
        margin-bottom: 8px;
    }

    .wholesale-catalog-card {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .wholesale-catalog-card > div {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wholesale-hero__image--detail {
        animation: none;
    }

    .wholesale-hero__image img,
    .wholesale-category-card img,
    .wholesale-product-card,
    .wholesale-product-card__media img {
        transition: none;
    }
}

/* Premium editorial blog */
.editorial-blog-page,
.journal-article-page {
    --journal-green: #294238;
    --journal-deep: #1f332b;
    --journal-gold: #9b8054;
    --journal-cream: #f7f3ec;
    --journal-line: rgba(143,123,90,0.2);
    width: min(1220px, calc(100% - 42px));
    margin: 0 auto;
    color: #293a33;
}

.editorial-blog-kicker {
    display: block;
    margin-bottom: 13px;
    color: var(--journal-gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.editorial-blog-intro {
    max-width: 850px;
    margin: 0 auto;
    padding: 90px 20px 68px;
    text-align: center;
}

.editorial-blog-intro h1 {
    margin: 0;
    color: var(--journal-green);
    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -3.6px;
}

.editorial-blog-intro h1 em {
    color: var(--journal-gold);
    font-style: normal;
    font-weight: 500;
}

.editorial-blog-intro > p {
    max-width: 600px;
    margin: 24px auto 0;
    color: #7a746b;
    font-size: 13px;
    line-height: 1.8;
}

.editorial-blog-intro__line {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    color: #9a9185;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.editorial-blog-intro__line i,
.editorial-blog-meta i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    display: block;
    background: var(--journal-gold);
}

.editorial-blog-tools {
    margin-bottom: 38px;
}

.editorial-blog-search {
    max-width: 760px;
    min-height: 58px;
    margin: 0 auto 22px;
    padding: 6px 7px 6px 20px;
    border: 1px solid var(--journal-line);
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(40,56,48,0.07);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.editorial-blog-search:focus-within {
    border-color: rgba(155,128,84,0.65);
    box-shadow: 0 16px 38px rgba(40,56,48,0.11), 0 0 0 4px rgba(155,128,84,0.07);
}

.editorial-blog-search > i {
    color: var(--journal-gold);
    font-size: 13px;
}

.editorial-blog-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: var(--journal-green);
    background: transparent;
    font: inherit;
    font-size: 12px;
}

.editorial-blog-search input::placeholder {
    color: #aaa196;
}

.editorial-blog-search > a {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: #8c8378;
    background: var(--journal-cream);
    font-size: 9px;
}

.editorial-blog-search button {
    min-width: 105px;
    min-height: 44px;
    padding: 11px 18px;
    border: 0;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    color: #fff;
    background: var(--journal-green);
    font: inherit;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.25s ease, transform 0.25s ease;
}

.editorial-blog-search button:hover {
    background: var(--journal-gold);
    transform: translateY(-1px);
}

.editorial-blog-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.editorial-blog-categories a {
    min-height: 39px;
    padding: 8px 9px 8px 15px;
    border: 1px solid var(--journal-line);
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #6f756f;
    background: rgba(255,255,255,0.76);
    font-size: 9px;
    font-weight: 700;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.editorial-blog-categories a small {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #8f7b5a;
    background: var(--journal-cream);
    font-size: 8px;
}

.editorial-blog-categories a:hover,
.editorial-blog-categories a.is-active {
    border-color: var(--journal-green);
    color: #fff;
    background: var(--journal-green);
    transform: translateY(-2px);
}

.editorial-blog-categories a.is-active small,
.editorial-blog-categories a:hover small {
    color: var(--journal-deep);
    background: #e5c994;
}

.editorial-blog-results {
    max-width: 760px;
    margin: 17px auto 0;
    padding-top: 13px;
    border-top: 1px solid var(--journal-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #8b8378;
    font-size: 9px;
}

.editorial-blog-results strong {
    color: var(--journal-green);
}

.editorial-blog-results a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--journal-gold);
    font-weight: 750;
}

.editorial-blog-featured {
    min-height: 570px;
    border-radius: 17px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    overflow: hidden;
    background: var(--journal-deep);
    box-shadow: 0 28px 65px rgba(35,53,45,0.13);
}

.editorial-blog-featured__media {
    position: relative;
    min-height: 570px;
    overflow: hidden;
}

.editorial-blog-featured__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 68%, rgba(31,51,43,0.2));
}

.editorial-blog-featured__media img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(.2,.7,.2,1);
}

.editorial-blog-featured:hover .editorial-blog-featured__media img {
    transform: scale(1.035);
}

.editorial-blog-featured__media > span {
    position: absolute;
    z-index: 2;
    top: 25px;
    left: 25px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--journal-deep);
    background: #e5c994;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.editorial-blog-featured__copy {
    padding: 58px 47px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}

.editorial-blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9d958a;
    font-size: 9px;
    font-weight: 650;
    letter-spacing: 0.35px;
    text-transform: uppercase;
}

.editorial-blog-featured__copy .editorial-blog-meta {
    color: rgba(255,255,255,0.48);
}

.editorial-blog-featured__copy h2 {
    margin: 21px 0 17px;
    font-size: clamp(31px, 3.2vw, 45px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.editorial-blog-featured__copy h2 a {
    color: #fff;
}

.editorial-blog-featured__copy > p {
    margin: 0;
    color: rgba(255,255,255,0.62);
    font-size: 11px;
    line-height: 1.8;
}

.editorial-blog-read {
    margin-top: 25px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--journal-green);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.editorial-blog-featured__copy .editorial-blog-read {
    color: #e5c994;
}

.editorial-blog-read i {
    transition: transform 0.25s ease;
}

.editorial-blog-read:hover i {
    transform: translateX(6px);
}

.editorial-blog-archive {
    padding: 112px 0 105px;
}

.editorial-blog-section-heading {
    margin-bottom: 38px;
    padding-bottom: 21px;
    border-bottom: 1px solid var(--journal-line);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.editorial-blog-section-heading .editorial-blog-kicker {
    margin-bottom: 8px;
}

.editorial-blog-section-heading h2 {
    margin: 0;
    color: var(--journal-green);
    font-size: clamp(30px, 3.5vw, 45px);
    line-height: 1.08;
    letter-spacing: -1.4px;
}

.editorial-blog-section-heading > span,
.editorial-blog-section-heading > a {
    color: #8e8579;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.editorial-blog-section-heading > a {
    display: flex;
    align-items: center;
    gap: 9px;
}

.editorial-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 23px 17px;
}

.editorial-blog-card {
    min-width: 0;
    border: 1px solid var(--journal-line);
    border-radius: 13px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.editorial-blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 50px rgba(40,56,48,0.11);
}

.editorial-blog-card--wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

.editorial-blog-card__media {
    position: relative;
    min-height: 275px;
    overflow: hidden;
    background: #e9e4db;
}

.editorial-blog-card--wide .editorial-blog-card__media {
    min-height: 390px;
}

.editorial-blog-card__media img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.editorial-blog-card:hover .editorial-blog-card__media img {
    transform: scale(1.05);
}

.editorial-blog-card__media > span {
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(41,66,56,0.86);
    backdrop-filter: blur(8px);
    font-size: 8px;
    font-weight: 800;
}

.editorial-blog-card__copy {
    padding: 25px 24px 27px;
}

.editorial-blog-card__category {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--journal-gold);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.editorial-blog-card--wide .editorial-blog-card__copy {
    padding: 35px 31px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.editorial-blog-card h3 {
    margin: 13px 0 12px;
    color: var(--journal-green);
    font-size: 20px;
    line-height: 1.28;
    letter-spacing: -0.4px;
}

.editorial-blog-card h3 a {
    color: inherit;
}

.editorial-blog-card__copy > p {
    margin: 0;
    color: #81796f;
    font-size: 10px;
    line-height: 1.72;
}

.editorial-blog-cta {
    margin-bottom: 110px;
    padding: 50px 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #fff;
    background: var(--journal-green);
}

.editorial-blog-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
}

.editorial-blog-cta > a {
    min-height: 47px;
    padding: 13px 21px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--journal-deep);
    background: #e5c994;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease;
}

.editorial-blog-cta > a:hover {
    background: #fff;
    transform: translateY(-3px);
}

.editorial-blog-empty {
    margin: 40px 0 100px;
    padding: 60px;
    border: 1px solid var(--journal-line);
    border-radius: 14px;
    color: #857d72;
    text-align: center;
}

.editorial-blog-empty i,
.editorial-blog-empty strong,
.editorial-blog-empty span {
    display: block;
}

.editorial-blog-empty i {
    width: 51px;
    height: 51px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--journal-green);
}

.editorial-blog-empty strong {
    color: var(--journal-green);
    font-size: 19px;
}

.editorial-blog-empty span {
    margin: 7px 0 21px;
    font-size: 11px;
}

.editorial-blog-empty a {
    padding-bottom: 3px;
    border-bottom: 1px solid var(--journal-gold);
    color: var(--journal-green);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.journal-breadcrumb {
    padding: 28px 0 24px;
    display: flex;
    align-items: center;
    gap: 9px;
    overflow: hidden;
    color: #968e82;
    font-size: 9px;
    white-space: nowrap;
}

.journal-breadcrumb a {
    color: var(--journal-green);
    font-weight: 700;
}

.journal-breadcrumb i {
    font-size: 6px;
}

.journal-breadcrumb span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.journal-article-hero {
    min-height: 680px;
    position: relative;
    border-radius: 17px;
    overflow: hidden;
    background: var(--journal-deep);
}

.journal-article-hero > img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.journal-article-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20,33,28,0.88) 0%, rgba(20,33,28,0.56) 44%, rgba(20,33,28,0.08) 78%), linear-gradient(0deg, rgba(20,33,28,0.28), transparent 50%);
}

.journal-article-hero__copy {
    max-width: 760px;
    position: absolute;
    z-index: 2;
    left: 72px;
    bottom: 66px;
    color: #fff;
}

.journal-article-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(49px, 6vw, 76px);
    line-height: 0.99;
    letter-spacing: -3px;
}

.journal-article-byline {
    margin-top: 29px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.journal-article-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: var(--journal-deep);
    background: #e5c994;
    font-size: 14px;
    font-weight: 800;
}

.journal-article-byline strong,
.journal-article-byline small {
    display: block;
}

.journal-article-byline strong {
    color: #fff;
    font-size: 11px;
}

.journal-article-byline small {
    margin-top: 3px;
    color: rgba(255,255,255,0.56);
    font-size: 9px;
}

.journal-article-layout {
    max-width: 960px;
    margin: 0 auto;
    padding: 75px 0 110px;
    display: grid;
    grid-template-columns: 68px minmax(0, 760px);
    gap: 45px;
}

.journal-share {
    position: sticky;
    top: 125px;
    align-self: start;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 9px;
}

.journal-share > span {
    margin-bottom: 5px;
    color: #a09586;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.3px;
    writing-mode: vertical-rl;
}

.journal-share a,
.journal-share button {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--journal-line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--journal-green);
    background: #fff;
    font-size: 11px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.journal-share a:hover,
.journal-share button:hover,
.journal-share button.is-copied {
    color: #fff;
    background: var(--journal-green);
    transform: translateY(-2px);
}

.journal-article-content {
    min-width: 0;
    color: #4c514d;
    font-size: 15px;
    line-height: 1.92;
}

.journal-article-lead {
    margin: 0 0 41px !important;
    padding: 0 0 34px;
    border-bottom: 1px solid var(--journal-line);
    color: var(--journal-green) !important;
    font-size: 21px !important;
    line-height: 1.6 !important;
    letter-spacing: -0.25px;
}

.journal-article-content h2 {
    margin: 55px 0 19px;
    color: var(--journal-green);
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.journal-article-content h3 {
    margin: 37px 0 15px;
    color: var(--journal-green);
    font-size: 22px;
    line-height: 1.3;
}

.journal-article-content p {
    margin: 0 0 23px;
}

.journal-article-content ul,
.journal-article-content ol {
    margin: 25px 0 31px;
    padding: 25px 28px 25px 48px;
    border-left: 3px solid var(--journal-gold);
    border-radius: 0 10px 10px 0;
    color: #4f574f;
    background: var(--journal-cream);
}

.journal-article-content li {
    margin: 8px 0;
    padding-left: 5px;
}

.journal-article-content a {
    border-bottom: 1px solid rgba(155,128,84,0.55);
    color: var(--journal-green);
    font-weight: 700;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.journal-article-content a:hover {
    border-color: var(--journal-green);
    color: var(--journal-gold);
}

.journal-author-card {
    margin-top: 62px;
    padding: 27px;
    border: 1px solid var(--journal-line);
    border-radius: 13px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--journal-cream);
}

.journal-author-card small,
.journal-author-card strong {
    display: block;
}

.journal-author-card small {
    color: var(--journal-gold);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.journal-author-card strong {
    margin: 3px 0;
    color: var(--journal-green);
    font-size: 16px;
}

.journal-author-card p {
    margin: 0;
    color: #82796e;
    font-size: 10px;
    line-height: 1.6;
}

.journal-related {
    padding: 80px 0 110px;
    border-top: 1px solid var(--journal-line);
}

.journal-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.journal-related-grid article > a:first-child {
    height: 245px;
    margin-bottom: 19px;
    border-radius: 11px;
    display: block;
    overflow: hidden;
}

.journal-related-grid img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.journal-related-grid article:hover img {
    transform: scale(1.045);
}

.journal-related-grid article > span {
    color: var(--journal-gold);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.journal-related-grid h3 {
    margin: 8px 0 0;
    color: var(--journal-green);
    font-size: 18px;
    line-height: 1.35;
}

.journal-related-grid h3 a {
    color: inherit;
}

@media (max-width: 980px) {
    .editorial-blog-featured {
        grid-template-columns: 1.05fr 0.95fr;
    }

    .editorial-blog-featured__copy {
        padding: 40px 35px;
    }

    .editorial-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .editorial-blog-card--wide {
        grid-column: 1 / -1;
    }

    .journal-article-hero {
        min-height: 610px;
    }

    .journal-article-hero__copy {
        left: 48px;
        right: 48px;
    }
}

@media (max-width: 720px) {
    .editorial-blog-page,
    .journal-article-page {
        width: calc(100% - 24px);
    }

    .editorial-blog-intro {
        padding: 67px 8px 48px;
        text-align: left;
    }

    .editorial-blog-intro h1 {
        font-size: 48px;
        letter-spacing: -2.3px;
    }

    .editorial-blog-intro > p {
        margin-left: 0;
    }

    .editorial-blog-intro__line {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .editorial-blog-search {
        padding-left: 15px;
        gap: 8px;
    }

    .editorial-blog-search button {
        min-width: 48px;
        width: 48px;
        padding: 0;
        font-size: 0;
    }

    .editorial-blog-search button i {
        font-size: 10px;
    }

    .editorial-blog-categories {
        margin-right: -12px;
        padding-right: 12px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .editorial-blog-categories::-webkit-scrollbar {
        display: none;
    }

    .editorial-blog-categories a {
        flex: 0 0 auto;
    }

    .editorial-blog-results {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .editorial-blog-featured {
        grid-template-columns: 1fr;
    }

    .editorial-blog-featured__media {
        min-height: 430px;
    }

    .editorial-blog-featured__copy {
        padding: 39px 27px 44px;
    }

    .editorial-blog-archive {
        padding: 78px 0;
    }

    .editorial-blog-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .editorial-blog-grid,
    .journal-related-grid {
        grid-template-columns: 1fr;
    }

    .editorial-blog-card--wide {
        grid-column: auto;
        display: block;
    }

    .editorial-blog-card--wide .editorial-blog-card__media {
        min-height: 310px;
    }

    .editorial-blog-cta {
        padding: 38px 28px;
        align-items: flex-start;
        flex-direction: column;
    }

    .journal-article-hero {
        min-height: 590px;
    }

    .journal-article-hero__shade {
        background: linear-gradient(0deg, rgba(20,33,28,0.92), rgba(20,33,28,0.12) 83%);
    }

    .journal-article-hero__copy {
        left: 27px;
        right: 27px;
        bottom: 38px;
    }

    .journal-article-hero h1 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .journal-article-layout {
        padding: 52px 5px 78px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .journal-share {
        position: static;
        align-items: center;
        flex-direction: row;
    }

    .journal-share > span {
        margin: 0 4px 0 0;
        writing-mode: initial;
    }

    .journal-article-lead {
        font-size: 18px !important;
    }

    .journal-article-content h2 {
        font-size: 28px;
    }

    .journal-related {
        padding: 65px 0 80px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .editorial-blog-featured__media img,
    .editorial-blog-card,
    .editorial-blog-card__media img,
    .journal-related-grid img {
        transition: none;
    }
}

/* Premium animated trust strip */
body .features-bar {
    position: relative;
    margin: 0;
    padding: 28px 0;
    overflow: hidden;
    border-color: rgba(143, 123, 90, 0.12);
    background:
        radial-gradient(circle at 50% -60%, rgba(199, 174, 128, 0.14), transparent 48%),
        #f8f5ef;
}

body .features-bar::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.52) 48%, transparent 74%);
    content: '';
    opacity: 0.5;
    pointer-events: none;
}

.features-bar .features-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.features-bar .feature-item {
    position: relative;
    display: flex;
    min-height: 148px;
    padding: 14px 24px;
    overflow: visible;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
    translate: 0 0;
    transition:
        translate 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.3s ease,
        box-shadow 0.35s ease,
        background-color 0.3s ease;
    animation: featureCardReveal 0.65s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.features-bar .feature-item:nth-child(2) {
    animation-delay: 0.1s;
}

.features-bar .feature-item:nth-child(3) {
    animation-delay: 0.2s;
}

.features-bar .feature-item:nth-child(4) {
    animation-delay: 0.3s;
}

.features-bar .feature-item::before {
    display: none;
}

.features-bar .feature-item:not(:last-child)::after {
    display: block;
    top: 18%;
    height: 64%;
    background: rgba(143, 123, 90, 0.18);
}

.features-bar .feature-item:hover {
    background: transparent;
    box-shadow: none;
    translate: 0 -3px;
}

.features-bar .feature-item i,
.features-bar .feature-item img {
    flex: 0 0 auto;
    margin: 0 auto 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    animation: none;
}

.features-bar .feature-item i {
    display: block;
    width: auto;
    height: auto;
    color: #927a53;
    font-size: 24px;
}

.features-bar .feature-item img {
    width: 66px;
    max-width: 66px;
    height: 30px;
    padding: 0;
    object-fit: contain;
}

.features-bar .feature-item:nth-child(2) i {
    animation-delay: -0.8s;
}

.features-bar .feature-item:nth-child(3) i {
    animation-delay: -1.6s;
}

.features-bar .feature-item:nth-child(4) i {
    animation-delay: -2.4s;
}

.features-bar .feature-item h5 {
    margin: 0 0 5px;
    color: #314438;
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 750;
}

.features-bar .feature-item p {
    max-width: 220px;
    margin: 0;
    color: #81796e;
    font-size: 10.5px;
    line-height: 1.55;
}

@keyframes featureCardReveal {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 900px) {
    .features-bar .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .features-bar .feature-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    body .features-bar {
        padding: 18px 0;
    }

    .features-bar .features-grid {
        gap: 9px;
    }

    .features-bar .feature-item {
        min-height: 132px;
        padding: 14px 12px;
    }

    .features-bar .feature-item p {
        display: block;
        font-size: 9px;
        line-height: 1.42;
    }

    .features-bar .feature-item i {
        width: auto;
        height: auto;
        font-size: 21px;
    }

    .features-bar .feature-item img {
        width: 58px;
        max-width: 58px;
        height: 26px;
        padding: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .features-bar .feature-item,
    .features-bar .feature-item i,
    .features-bar .feature-item img {
        animation: none;
    }

    .features-bar .feature-item {
        transition: none;
    }
}
