.hero-swiper {
    width: 100%;
    height: 80vh;
    min-height: 500px;
}

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

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

.hero-swiper .swiper-slide:not(.swiper-slide-active) .banner-overlay-layer,
.hero-swiper .swiper-slide:not(.swiper-slide-active) .hero-slide__hit {
    pointer-events: 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.55) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.25) 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: inherit;
    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 {
    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;
    justify-content: center;
    padding: 1rem 1.5rem;
    pointer-events: none;
}

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

.hero-slide__inner {
    max-width: 56rem;
    color: #fff;
    text-align: center;
}

.hero-slide__title {
    margin: 0 0 1rem;
    font-size: clamp(1.875rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
}

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

.hero-slide__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-slide__actions .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.hero-slide__actions .btn-secondary:hover {
    background: #fff;
    color: var(--bags-1);
}

.hero-pagination {
    bottom: 24px !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: 28px;
    border-radius: 5px;
    background: #ffd700 !important;
}

.hero-nav-prev,
.hero-nav-next {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    color: #fff !important;
}

.hero-nav-prev::after,
.hero-nav-next::after {
    font-size: 18px !important;
}

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

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

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

.home-section--oem {
    background: var(--bags-1);
    color: #fff;
}

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

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

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

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

.home-section--oem .section-title {
    color: #fff;
}

.home-section--oem .section-subtitle {
    color: rgba(255, 215, 0, 0.85);
}

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

.cat-card__title {
    margin: 0;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
}

.cat-card:hover .cat-card__title {
    color: var(--bags-1);
}

.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.3s ease;
}

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

.card-product__body {
    padding: 1rem;
}

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

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

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

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

.oem-step {
    padding: 1.5rem;
    text-align: center;
}

.oem-step__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.2);
    color: var(--bags-2);
    font-weight: 700;
    font-size: 1.5rem;
}

.oem-step__title {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.oem-step__desc {
    margin: 0;
    color: #d1d5db;
    font-size: 0.875rem;
}

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

.oem-cta .btn-gold {
    display: inline-flex;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    background: var(--bags-2);
    color: var(--bags-1);
    font-weight: 700;
}

.oem-cta .btn-gold:hover {
    background: #facc15;
}

.review-card {
    margin: 0 0.5rem;
    padding: 2rem;
    border-radius: var(--bags-radius);
    background: var(--bags-bg);
}

.review-card__stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    color: var(--bags-2);
}

.review-card__stars svg {
    width: 1.25rem;
    height: 1.25rem;
}

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

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

.reviews-swiper .swiper-pagination-bullet-active {
    background: #ffd700 !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(--bags-1);
}

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

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

@media (min-width: 640px) {
    .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);
    }
}
