.hero-swiper {
    width: 100%;
    height: 85vh;
    min-height: 520px;
}

.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
    height: 100%;
}

.hero-swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
    display: none;
}

.hero-slide {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.hero-slide__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-slide__overlay,
.hero-slide__mask {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-slide__overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-slide__mask.is-frost {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.hero-slide__hit {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.banner-overlay-box {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    container-type: inline-size;
    container-name: banner-overlay;
    --banner-unit: calc(100cqw / 1200);
}

.banner-overlay-layer {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    max-width: 90%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 1px solid transparent;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    font-size: calc(var(--layer-size, 28) * var(--banner-unit, 1px));
    line-height: 1.25;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    white-space: pre-wrap;
    word-break: break-word;
    pointer-events: auto;
    transform: translate(-50%, -50%);
    text-decoration: none;
}

.banner-overlay-layer.is-btn {
    font-family: Inter, sans-serif;
    text-shadow: none;
    border-radius: 999px;
    padding: 0.55em 1.35em;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
}

.banner-overlay-layer.is-ghost {
    box-shadow: none;
    border: 1px solid currentColor;
    background: transparent;
}

@supports not (width: 1cqw) {
    .banner-overlay-box {
        --banner-unit: 1px;
    }
}

.hero-slide__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 4rem 1rem;
    pointer-events: none;
}

.hero-slide__content a {
    pointer-events: auto;
}

.hero-slide__inner {
    max-width: var(--beauty-max);
    width: 100%;
    margin: 0 auto;
    color: #fff;
}

.hero-slide__eyebrow {
    margin: 0 0 1rem;
    color: var(--beauty-gold);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-slide__title {
    margin: 0 0 1.25rem;
    max-width: 48rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
}

.hero-slide__desc {
    margin: 0 0 2rem;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-slide__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-fallback {
    display: flex;
    align-items: center;
    min-height: 85vh;
    background: linear-gradient(135deg, #c8102e 0%, #1e3a8a 55%, #000 100%);
}

.hero-fallback__inner {
    width: 100%;
    max-width: var(--beauty-max);
    margin: 0 auto;
    padding: 5rem 1rem;
    color: #fff;
    text-align: center;
}

.hero-fallback__eyebrow {
    margin: 0 0 1rem;
    color: var(--beauty-gold);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-fallback__title {
    margin: 0 0 2rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.25rem, 6vw, 3.75rem);
}

.hero-fallback .hero-slide__actions {
    align-items: center;
    justify-content: center;
}

.hero-pagination {
    bottom: 32px !important;
    z-index: 20;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    background: #d4af37 !important;
}

.home-stats {
    padding: 2.5rem 0;
    background: #fff;
    border-bottom: 1px solid var(--beauty-border);
}

.home-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
}

.home-stats__value {
    margin: 0;
    color: var(--beauty-1);
    font-size: 1.875rem;
    font-weight: 700;
}

.home-stats__label {
    margin: 0.25rem 0 0;
    color: var(--beauty-muted);
    font-size: 0.875rem;
}

.home-section {
    padding: 5rem 0;
}

.home-section--white {
    background: #fff;
}

.home-section--muted {
    background: var(--beauty-bg);
}

.home-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.home-section__head--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.home-section__head .section-title {
    margin-bottom: 0.5rem;
}

.home-section__more {
    display: none;
    color: var(--beauty-1);
    font-weight: 500;
}

.home-section__more:hover {
    text-decoration: underline;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.cat-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 1rem;
    background: #f3f4f6;
}

.cat-card img,
.cat-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cat-card__placeholder {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.2), rgba(30, 58, 138, 0.2));
}

.cat-card:hover img {
    transform: scale(1.1);
}

.cat-card__mask {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.cat-card__title {
    margin: 0;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f3f4f6;
}

.product-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-product__badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: var(--beauty-1);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
}

.card-product__body {
    padding: 1rem;
}

.card-product__title {
    margin: 0 0 0.65rem;
    font-weight: 600;
}

.card-product:hover .card-product__title {
    color: var(--beauty-1);
}

.card-product__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
}

.card-product__price {
    margin: 0;
    color: var(--beauty-1);
    font-size: 1.125rem;
    font-weight: 700;
}

.card-product__unit {
    margin-left: 0.25rem;
    color: var(--beauty-muted);
    font-size: 0.75rem;
    font-weight: 400;
}

.card-product__moq {
    color: var(--beauty-muted);
    font-size: 0.75rem;
}

.card-product__summary {
    margin: 0.5rem 0 0;
    color: var(--beauty-muted);
    font-size: 0.875rem;
}

.oem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.oem-card {
    padding: 2rem;
    border-radius: 1rem;
    background: #f9fafb;
    text-align: center;
    transition: box-shadow 0.2s ease;
}

.oem-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.oem-card__icon {
    margin-bottom: 1rem;
    font-size: 2.75rem;
    line-height: 1;
}

.oem-card__title {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
}

.oem-card__desc {
    margin: 0;
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.7;
}

.oem-cta {
    margin-top: 3rem;
    text-align: center;
}

.home-brands {
    padding: 4rem 0;
    background: #f9fafb;
}

.home-brands__title {
    margin: 0 0 2rem;
    color: var(--beauty-muted);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-align: center;
    text-transform: uppercase;
}

.home-brands__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 3rem;
    opacity: 0.65;
}

.home-brands__item {
    color: #9ca3af;
    font-size: 1.125rem;
    font-weight: 600;
}

.review-card {
    margin: 0 1rem;
    max-width: 32rem;
    padding: 2rem;
    border-radius: 1rem;
    background: #f9fafb;
}

.review-card__stars {
    margin-bottom: 1rem;
    color: var(--beauty-gold);
    letter-spacing: 0.1em;
}

.review-card__text {
    margin: 0 0 1.5rem;
    color: #374151;
    font-style: italic;
}

.review-card__author {
    margin: 0;
    font-weight: 600;
}

.reviews-swiper .swiper-pagination-bullet-active {
    background: #c8102e !important;
}

.news-home-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.news-home-card__media {
    display: block;
    overflow: hidden;
    height: 12rem;
    background: #f3f4f6;
}

.news-home-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-home-card__media:hover img {
    transform: scale(1.05);
}

.news-home-card__body {
    padding: 1.5rem;
}

.news-home-card__title {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
}

.news-home-card__title a:hover {
    color: var(--beauty-1);
}

.news-home-card__summary {
    margin: 0 0 1rem;
    color: var(--beauty-muted);
    font-size: 0.875rem;
}

.news-home-card__more {
    color: var(--beauty-1);
    font-weight: 500;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .hero-slide__actions,
    .hero-fallback .hero-slide__actions {
        flex-direction: row;
    }

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

@media (min-width: 768px) {
    .cat-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .home-section__more {
        display: inline-flex;
    }

    .oem-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-home-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
