.fashion-home {
    color: #222;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

.fashion-home a {
    color: inherit;
    text-decoration: none;
}

.fashion-home img {
    display: block;
    width: 100%;
    object-fit: cover;
}

/* Scroll reveal (progressive enhancement). JS adds .sr-item/.sr-in when supported. */
.fashion-home .sr-item {
    opacity: 0;
    transform: translate3d(0, var(--sr-y, 24px), 0);
    will-change: opacity, transform;
}

.fashion-home .sr-item.sr-in {
    opacity: 1;
    transform: none;
    animation: srFadeUp 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--sr-delay, 0ms) both;
}

@keyframes srFadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, var(--sr-y, 24px), 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fashion-home .sr-item,
    .fashion-home .sr-item.sr-in {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

.fashion-hero {
    width: 100%;
    padding: 0;
    overflow: hidden;
    background: #fbf7ec;
}

.fashion-hero__carousel,
.fashion-hero .carousel-inner,
.fashion-hero .carousel-item {
    width: 100%;
}

.hero-banner-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(320px, 42vw, 640px);
    background: linear-gradient(180deg, #fffaf3 0%, #f9f0e7 100%);
}

.fashion-hero .carousel-item img,
.hero-banner-image-link img {
    width: 100%;
    height: clamp(320px, 42vw, 640px);
    object-fit: contain;
    object-position: center center;
    border-radius: 0;
}

.hero-banner-image-link {
    display: block;
    width: 100%;
}

.hero-banner-caption {
    --banner-text-color: #183d33;
    --banner-button-color: #7a9c59;
    --banner-button-text-color: #ffffff;
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: min(520px, calc(100% - 48px));
    transform: translateY(-50%);
}

.hero-banner-caption--left {
    left: clamp(24px, 8vw, 120px);
    right: auto;
    align-items: flex-start;
    text-align: left;
}

.hero-banner-caption--center {
    left: 50%;
    align-items: center;
    text-align: center;
    transform: translate(-50%, -50%);
}

.hero-banner-caption--right {
    right: clamp(24px, 8vw, 120px);
    left: auto;
    align-items: flex-end;
    text-align: right;
}

.hero-banner-title {
    margin: 0;
    color: var(--banner-text-color, #183d33);
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.1;
    font-weight: 800;
    text-wrap: balance;
}

.hero-banner-desc {
    margin: 0;
    color: var(--banner-text-color, #183d33);
    font-size: clamp(14px, 1.6vw, 18px);
    line-height: 1.6;
    opacity: 0.9;
}

.hero-banner-btn,
.hero-banner-btn:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 26px;
    border-radius: 999px;
    color: var(--banner-button-text-color, #ffffff);
    background-color: var(--banner-button-color, #7a9c59);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 16px 32px rgba(24, 61, 51, 0.18);
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.hero-banner-btn:hover,
.hero-banner-btn:focus,
.hero-banner-btn:active {
    background-color: color-mix(in srgb, var(--banner-button-color, #7a9c59) 82%, #ffffff 18%);
    color: color-mix(in srgb, var(--banner-button-text-color, #ffffff) 82%, #000000 18%);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(24, 61, 51, 0.22);
}

@supports not (background-color: color-mix(in srgb, #000 50%, #fff 50%)) {
    .hero-banner-btn:hover,
    .hero-banner-btn:focus,
    .hero-banner-btn:active {
        background-color: var(--banner-button-color, #7a9c59);
        color: var(--banner-button-text-color, #ffffff);
        filter: brightness(1.06);
    }
}

.fashion-hero .carousel-control-prev,
.fashion-hero .carousel-control-next {
    width: 52px;
    height: 52px;
    top: 50%;
    margin: 0 24px;
    border-radius: 50%;
    background: rgba(24, 61, 51, 0.58);
    transform: translateY(-50%);
    opacity: 1;
}

.fashion-hero .carousel-control-prev:hover,
.fashion-hero .carousel-control-next:hover {
    background: rgba(24, 61, 51, 0.78);
}

.fashion-hero .carousel-indicators {
    margin-bottom: 18px;
}

.fashion-hero .carousel-indicators [data-bs-target] {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.88);
}

.fashion-label,
.fashion-section-title span,
.fashion-newsletter span {
    color: #7a9c59;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.fashion-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 30px;
    border: 1px solid #183d33;
    border-radius: 40px;
    color: #fff;
    background: #183d33;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.fashion-btn:hover {
    color: #fff;
    background: #7a9c59;
    border-color: #7a9c59;
    transform: translateY(-2px);
}

.fashion-btn--outline {
    color: #183d33;
    background: transparent;
}

.fashion-btn--outline:hover {
    color: #fff;
    background: #183d33;
    border-color: #183d33;
}

.fashion-section {
    padding: 80px 6%;
}

.fashion-bg-light {
    background: #faf8f1;
}

.fashion-bg-soft {
    background: #eef3eb;
}

.fashion-section-title {
    margin-bottom: 42px;
    text-align: center;
}

.fashion-section-title h2 {
    margin-top: 8px;
    color: #183d33;
    font-size: 38px;
    line-height: 1.2;
}

.fashion-section-note {
    max-width: 720px;
    margin: -18px auto 30px;
    color: #666;
    text-align: center;
}

.fashion-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.fashion-category-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border-radius: 18px;
    background: #000;
}

.fashion-category-card img {
    height: 430px;
    opacity: 0.82;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fashion-category-card:hover img {
    opacity: 0.65;
    transform: scale(1.06);
}

.fashion-category-card h3 {
    position: absolute;
    left: 28px;
    bottom: 62px;
    margin: 0;
    color: #fff;
    font-size: 34px;
    line-height: 1.15;
}

.fashion-category-card a {
    position: absolute;
    left: 28px;
    bottom: 28px;
    color: #fff;
    font-weight: 700;
    border-bottom: 1px solid #fff;
}

.fashion-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

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

.fashion-product-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.fashion-product-card:hover {
    color: inherit;
    box-shadow: 0 18px 38px rgba(24, 61, 51, 0.14);
    transform: translateY(-6px);
}

.fashion-product-card img {
    /*height: 360px;*/
    padding: 12px;
    background: #f6f4ed;
    object-fit: contain;
    object-position: center center;
    transition: transform .35s ease;
}

.fashion-product-card:hover img {
    transform: scale(1.035);
}

.fashion-product-card--compact img {
    /*height: 300px;*/
}

.fashion-discount {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 12px;
    border-radius: 30px;
    color: #fff;
    background: #c84646;
    box-shadow: 0 10px 22px rgba(184, 63, 63, 0.22);
    font-size: 13px;
    font-weight: 700;
}

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

.fashion-stock {
    margin: 0;
    color: #777;
    font-size: 13px;
}

.fashion-stock {
    color: #b74444;
    font-weight: 700;
}

.fashion-product-info h3 {
    display: -webkit-box;
    min-height: 48px;
    margin: 8px 0;
    overflow: hidden;
    color: #183d33;
    font-size: 16px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.fashion-product-info .product-color-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 18px;
    margin: 8px 0 10px;
}

.fashion-product-info .product-color-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 50%;
}

.fashion-product-info .product-color-text,
.fashion-product-info .product-color-more {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 2px 7px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    color: #183d33;
    background: #fff;
    font-size: 12px;
    line-height: 1;
}

.fashion-price {
    margin-bottom: 14px;
    color: #183d33;
    font-weight: 800;
}

.fashion-price del {
    margin-left: 6px;
    color: #999;
    font-weight: 400;
}

.fashion-card-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    border-radius: 30px;
    color: #fff;
    background: #183d33;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.fashion-product-card:hover .fashion-card-action {
    background: #7a9c59;
}

@media (hover: none) {
    .fashion-product-card:hover {
        transform: none;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    }

    .fashion-product-card:hover img {
        transform: none;
    }
}

.fashion-center {
    margin-top: 38px;
    text-align: center;
}

.fashion-collection-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
    align-items: center;
}

.fashion-collection-text {
    padding: 44px;
    border-radius: 22px;
    background: #fff;
}

.fashion-collection-text h3 {
    margin-bottom: 14px;
    color: #183d33;
    font-size: 34px;
    line-height: 1.2;
}

.fashion-collection-text p {
    margin-bottom: 24px;
    color: #555;
}

.fashion-newsletter {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 40px;
    margin: 80px 6%;
    padding: 54px;
    border-radius: 24px;
    color: #fff;
    background: #183d33;
}

.fashion-newsletter span {
    color: #d7e8c4;
}

.fashion-newsletter h2 {
    margin: 10px 0;
    color: #fff;
    font-size: 36px;
    line-height: 1.2;
}

.fashion-newsletter p {
    color: #e8eee8;
}

.fashion-newsletter form {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: 50px;
    background: #fff;
}

.fashion-newsletter input {
    flex: 1;
    min-width: 0;
    padding: 0 18px;
    border: 0;
    outline: 0;
    font-size: 15px;
}

.fashion-newsletter button {
    width: 140px;
    border: 0;
    border-radius: 30px;
    color: #fff;
    background: #183d33;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.fashion-newsletter button:hover {
    background: #7a9c59;
}

.fashion-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.fashion-news-card {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.fashion-news-card img {
    height: 250px;
}

.fashion-news-card div {
    padding: 22px;
}

.fashion-news-card span {
    color: #7a9c59;
    font-size: 13px;
    font-weight: 700;
}

.fashion-news-card h3 {
    display: -webkit-box;
    min-height: 64px;
    margin: 10px 0;
    overflow: hidden;
    color: #183d33;
    font-size: 20px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.fashion-news-card p {
    margin-bottom: 12px;
    color: #777;
    font-size: 14px;
}

.fashion-news-card a {
    color: #183d33;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .fashion-collection-layout,
    .fashion-newsletter {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hero-banner-media,
    .fashion-hero .carousel-item img,
    .hero-banner-image-link img {
        min-height: clamp(220px, 58vw, 360px);
        height: clamp(220px, 58vw, 360px);
    }

    .hero-banner-caption,
    .hero-banner-caption--left,
    .hero-banner-caption--center,
    .hero-banner-caption--right {
        left: 50%;
        right: auto;
        width: min(420px, calc(100% - 32px));
        align-items: center;
        text-align: center;
        transform: translate(-50%, -50%);
    }

    .hero-banner-caption {
        top: 58%;
        gap: 10px;
    }

    .hero-banner-title {
        font-size: clamp(22px, 7vw, 34px);
    }

    .hero-banner-desc {
        font-size: 14px;
        line-height: 1.5;
    }

    .hero-banner-btn {
        min-height: 42px;
        padding: 10px 20px;
    }

    .fashion-category-grid,
    .fashion-news-grid,
    .fashion-product-grid,
    .fashion-product-grid--small {
        grid-template-columns: 1fr;
    }

    .fashion-section {
        padding: 58px 6%;
    }

    .fashion-newsletter {
        margin: 58px 6%;
        padding: 34px 24px;
    }

    .fashion-newsletter form {
        flex-direction: column;
        border-radius: 20px;
    }

    .fashion-newsletter input {
        min-height: 46px;
        padding: 0 14px;
    }

    .fashion-newsletter button {
        width: 100%;
        min-height: 46px;
    }
}
