  /* OLD PRICE */
.search-popup {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at top center, rgba(255, 226, 233, 0.18), transparent 35%),
        rgba(67, 37, 45, 0.6);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.search-box {
    background: linear-gradient(180deg, #ffffff 0%, #fff8fa 100%);
    padding: 34px 30px 28px;
    border-radius: 24px;
    width: 100%;
    max-width: 560px;
    position: relative;
    border: 1px solid rgba(150, 88, 101, 0.14);
    box-shadow: 0 24px 60px rgba(84, 38, 52, 0.2);
}

.search-box input {
    width: 100%;
    height: 60px;
    padding: 0 18px;
    margin-bottom: 16px;
    border-radius: 16px;
    border: 1px solid rgba(150, 88, 101, 0.18);
    background: #ffffff;
    font-size: 1.08rem;
    font-weight: 500;
    color: #5b3d46;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.search-box input:focus {
    outline: none;
    border-color: rgba(150, 88, 101, 0.34);
    box-shadow: 0 0 0 4px rgba(214, 159, 176, 0.18);
}

.search-box input::placeholder {
    color: #9a7a84;
}

.search-box form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.search-box .btn {
    align-self: flex-start;
    min-width: 154px;
    height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, #a7697b 0%, #c9879c 100%);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(150, 88, 101, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-box .btn:hover,
.search-box .btn:focus {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(150, 88, 101, 0.24);
    color: #ffffff;
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    font-size: 24px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #7f5260;
    background: rgba(150, 88, 101, 0.08);
    transition: background 0.2s ease, transform 0.2s ease;
}

.close-btn:hover {
    background: rgba(150, 88, 101, 0.14);
    transform: rotate(90deg);
}

@media (max-width: 576px) {
    .search-popup {
        padding: 14px;
    }

    .search-box {
        padding: 28px 18px 22px;
        border-radius: 20px;
    }

    .search-box input {
        height: 54px;
        font-size: 0.98rem;
    }

    .search-box .btn {
        width: 100%;
        min-width: 0;
    }
}

.search-icon {
    font-size: 18px;
    color: #000;
    transition: 0.3s;
}

.search-icon:hover {
    color: #007bff;
    transform: scale(1.2);
}

  .hero-old-price {
        text-decoration: line-through;
        color: #fdfdfd;
        font-size: 16px;
    }

    /* DISCOUNT */
    .hero-discount {
        color: #28a745;
        font-weight: 600;
        font-size: 14px;
    }

    /* MAIN PRICE */
    .hero-price {
        font-size: 22px;
        font-weight: bold;
    }

    .new-price {
        font-size: 22px;
        font-weight: bold;
        color: #000;
    }

    .old-price {
        text-decoration: line-through;
        color: #999;
        font-size: 16px;
    }

    .discount-percent {
        color: green;
        font-weight: 600;
        font-size: 14px;
    }

    .home-product-price {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-wrap: wrap;
    }

    .price-new {
        font-weight: bold;
        font-size: 15px;
        color: #000;
    }

    .price-old {
        text-decoration: line-through;
        color: #999;
        font-size: 13px;
    }

    .price-off {
        color: green;
        font-size: 13px;
        font-weight: 600;
    }

    /* CARD */
    .home-product-card {
        background: #f3f3f3;
        border-radius: 16px;
        padding: 10px;
        transition: 0.3s;
    }

    .home-product-card:hover {
        transform: translateY(-5px);
    }

    /* IMAGE BOX */
    .home-product-img-wrap {
        width: 100%;
        height: 260px;
        background: #f3f3f3;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 12px;
    }

    /* IMAGE */
    .home-product-img {
        max-width: 85%;
        max-height: 85%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    /* HOVER */
    .home-product-img-wrap:hover .home-product-img {
        transform: scale(1.08);
    }

    /* INFO */
    .home-product-info {
        padding: 10px 5px;
        text-align: center;
    }

    .home-product-name {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    /* SIZE */
    .home-product-size {
        font-size: 13px;
        color: #777;
    }

    /* PRICE */
    .home-product-price {
        display: flex;
        justify-content: center;
        gap: 6px;
        align-items: center;
        margin-top: 5px;
    }

    .price-new {
        font-weight: bold;
        font-size: 16px;
    }

    .price-old {
        text-decoration: line-through;
        color: #999;
    }

    .price-off {
        color: green;
        font-size: 13px;
    }

    /* BUTTONS */
    .home-product-actions {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }

    .home-product-btn {
        flex: 1;
        border-radius: 10px;
    }

    /* SECTION */
    .home-services-section {
        background: #f8f9fa;
    }

    /* CARD */
    .home-service-card {
        background: #fff;
        padding: 18px;
        border-radius: 14px;
        border: 1px solid #eee;
        transition: 0.3s;
        text-align: center;
    }

    .home-service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    /* CATEGORY TITLE */
    .category-title {
        font-weight: 700;
        margin-bottom: 12px;
        font-size: 15px;
    }

    /* SUBCATEGORY CHIPS */
    .subcategory-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
    }

    .subcategory-chips a {
        padding: 5px 10px;
        background: #f1f1f1;
        border-radius: 20px;
        font-size: 12px;
        text-decoration: none;
        color: #333;
        transition: 0.3s;
    }

    .subcategory-chips a:hover {
        background: #000;
        color: #fff;
    }

    /* SECTION BACKGROUND */
.home-services-section {
    background: #f5e6d3; /* light brown */
}


/* HEADER */
/* .inner_page_head {
    background: linear-gradient(135deg, #000, #444);
    color: #fff;
    border-radius: 0 0 20px 20px;
} */

/* SECTION */
.services_section {
    background: #f5f5f5;
}

/* CARD */
.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* CATEGORY TITLE */
.service-card h5 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.service-card h5::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #007bff;
    margin: 8px auto 0;
    border-radius: 10px;
}

/* SUBCATEGORY LIST */
.subcategory-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

/* SUBCATEGORY CHIP */
.subcategory-list li a {
    display: inline-block;
    padding: 6px 12px;
    background: #f1f1f1;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

/* HOVER CHIP */
.subcategory-list li a:hover {
    background: #007bff;
    color: #fff;
    transform: scale(1.05);
}

/* EMPTY */
.subcategory-list li {
    font-size: 13px;
    color: #999;
}


    /* CONTACT CARD */
.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* CONTACT ITEM */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    font-size: 20px;
    color: #007bff;
    margin-right: 15px;
}

/* ARRIVAL CARD */
.arrival-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
}

/* IMAGE */
.arrival-img {
    max-width: 100%;
    height: 300px;
    object-fit: contain;
}

/* PRICE */
.price-new {
    font-size: 22px;
    font-weight: bold;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.price-off {
    color: green;
    margin-left: 10px;
    font-weight: 600;
}

    /* IMAGE */
.pd-main-img {
    max-height: 400px;
    object-fit: contain;
}

/* THUMB */
.pd-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-right: 8px;
    cursor: pointer;
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* PRICE */
.price-new {
    font-size: 26px;
    font-weight: bold;
    color: #000;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.price-off {
    color: green;
    font-weight: 600;
    margin-left: 10px;
}

/* DESCRIPTION */
.pd-description-box {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 10px;
    line-height: 1.6;
}

/* HTML inside description */
.pd-description-box ul {
    padding-left: 20px;
}

.pd-description-box img {
    max-width: 100%;
    border-radius: 8px;
}


/* HEADER */
.inner_page_head {
    background: linear-gradient(135deg, #ff69b466, #ff69b466);
    color: #fff;
    border-radius: 0 0 25px 25px;
}

/* SECTION */
.services_section {
    background: #fff5f8;
}

/* CARD */
.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    max-width: 700px;
    margin: auto;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,20,147,0.2);
}

/* ICON */
.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* TITLE */
.service-card h5 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
}

/* GRID */
.subcategory-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* ITEM */
.subcategory-list a {
    display: block;
    padding: 12px;
    background: #ffe4ec;
    border-radius: 30px;
    color: #ff1493;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

/* HOVER */
.subcategory-list a:hover {
    background: #ff1493;
    color: #fff;
    transform: scale(1.05);
}

/* MOBILE */
@media(max-width:576px){
    .subcategory-list {
        grid-template-columns: 1fr;
    }
}


.footer-bottom {
    text-align: center;
    padding: 15px 10px;
    background: #f8f8f8;
    border-top: 1px solid #eee;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* CREATOR LINK */
.creator-link {
    color: #ff1493;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.creator-link:hover {
    color: #ff69b4;
    text-shadow: 0 2px 8px rgba(255,105,180,0.4);
}

/* CREATOR LINK */
.creator-link1 {
    color: #145eff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.creator-link1:hover {
    color: #145eff;
    text-shadow: 0 2px 8px rgba(255,105,180,0.4);
}

/* Home hero refinements */
.slider_section.hero-shop-slider {
    min-height: 720px;
    height: 720px;
    padding-top: 72px;
    padding-bottom: 34px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-brand-copy-wrap {
    position: relative;
    z-index: 3;
    /* padding-top: 30px;
    padding-bottom: 10px; */
}

.hero-brand-copy {
    max-width: 620px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    padding: 0 18px;
}

.hero-brand-copy-kicker {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-brand-copy-title {
    margin-top: 8px;
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    line-height: 1.08;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.hero-brand-copy-text {
    margin-top: 8px;
    font-size: clamp(0.84rem, 1vw, 0.94rem);
    font-weight: 600;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.24);
}

.slider_section.hero-shop-slider .carousel-inner {
    margin-top: 18px;
    padding-bottom: 8px;
}

.slider_section.hero-shop-slider .carousel-item .detail-box {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 18px 20px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin-top: 0;
    margin-bottom: 0;
}

.slider_section.hero-shop-slider .carousel-item .container {
    padding-top: 0;
}

.slider_section.hero-shop-slider .hero-kicker {
    margin-bottom: 16px;
}

.slider_section.hero-shop-slider .hero-kicker span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    font-size: 0;
}

.slider_section.hero-shop-slider .hero-kicker span::after {
    content: "Online store \00B7 New drops";
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.96);
}

.slider_section.hero-shop-slider .hero-tagline {
    max-width: 390px;
    font-size: 0.92rem;
}

.slider_section.hero-shop-slider .hero-title {
    font-size: clamp(1.7rem, 3.2vw, 2.8rem);
    line-height: 1.05;
    max-width: 400px;
}

.slider_section.hero-shop-slider .hero-price-row {
    margin-top: 14px;
    gap: 8px;
}

.slider_section.hero-shop-slider .home-product-size {
    margin: 0;
    font-size: 0.82rem;
}

.home-product-section {
    position: relative;
    overflow: hidden;
    padding-top: 54px;
    background:
        radial-gradient(circle at top left, rgba(255, 207, 220, 0.55), transparent 30%),
        linear-gradient(180deg, #fff4f7 0%, #ffffff 50%, #fff8fa 100%);
}

.arrival_section .box {
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff7f8 0%, #fde8ed 100%);
    box-shadow: 0 24px 50px rgba(150, 88, 101, 0.12);
}

.arrival_section .heading_container h2 {
    color: #834c5a;
}

.arrival_section .box p,
.arrival_section .box h4 {
    position: relative;
    z-index: 2;
}

.home-feature-strip-section {
    padding: 18px 0 80px;
    background: linear-gradient(180deg, #fff8fa 0%, #ffffff 100%);
}

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

.home-feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 244, 246, 0.95)),
        radial-gradient(circle at top right, rgba(234, 196, 205, 0.35), transparent 40%);
    border: 1px solid rgba(150, 88, 101, 0.12);
    box-shadow: 0 16px 36px rgba(150, 88, 101, 0.1);
    min-height: 128px;
}

.home-feature-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff 0%, #ffe9ef 100%);
    color: #8e5260;
    font-size: 28px;
    flex: 0 0 62px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.home-feature-copy h3 {
    margin: 0 0 6px;
    font-size: 1.5rem;
    color: #5f3742;
    line-height: 1.1;
}

.home-feature-copy p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.45;
    color: #76525c;
    font-weight: 600;
}

.shop-catalog-head {
    margin-bottom: 22px;
}

.home-intro-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 32px;
}

.home-intro-pill {
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(150, 88, 101, 0.14);
    box-shadow: 0 10px 24px rgba(150, 88, 101, 0.08);
    color: #8a5663;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.home-product-grid .col-6,
.home-product-grid .col-md-4,
.home-product-grid .col-lg-3 {
    display: flex;
}

.home-product-card {
    width: 100%;
    border: 1px solid rgba(196, 145, 160, 0.12);
    box-shadow: 0 18px 42px rgba(138, 86, 99, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #fffafb 100%);
}

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

.home-product-name {
    min-height: 42px;
    color: #6d424c;
}

.home-product-actions {
    padding: 0 16px 16px;
}

.home-promo-card {
    padding: 18px 16px;
    text-align: center;
    background:
        linear-gradient(180deg, #fff8f9 0%, #f8e7eb 100%),
        radial-gradient(circle at bottom right, rgba(214, 159, 176, 0.2), transparent 45%);
    min-height: 100%;
}

.home-promo-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-promo-icon-wrap {
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.home-promo-icon {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.home-promo-title {
    margin: 0 0 10px;
    font-size: 2rem;
    line-height: 1.02;
    color: #2e1a1f;
}

.home-promo-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 600;
    color: #5f434b;
}

.home-promo-bottom {
    margin-top: 24px;
}

.home-promo-about {
    margin: 0 0 12px;
    font-size: 1.85rem;
    color: #2e1a1f;
}

.home-promo-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.home-promo-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    font-size: 15px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.home-promo-socials a:hover {
    color: #fff;
    transform: translateY(-1px);
    opacity: 0.9;
}

.home-product-btn.primary {
    background: linear-gradient(135deg, #965865 0%, #c98fa2 100%) !important;
    box-shadow: 0 12px 24px rgba(150, 88, 101, 0.18);
}

.home-product-btn.primary:hover {
    transform: translateY(-1px);
}

.home-products-pagination .pagination .page-link {
    color: #8a5663;
    border-color: rgba(150, 88, 101, 0.16);
    border-radius: 999px !important;
    margin: 0 4px;
}

.home-products-pagination .pagination .active .page-link {
    background: #965865;
    border-color: #965865;
    color: #fff;
}

@media (max-width: 991px) {
    .slider_section.hero-shop-slider {
        min-height: 620px;
        height: 620px;
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .hero-brand-copy {
        padding: 10px 8px 0;
    }

    .slider_section.hero-shop-slider .carousel-item .detail-box {
        padding: 18px 18px;
        border-radius: 20px;
        margin-bottom: 0;
    }

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

    .slider_section.hero-shop-slider .hero-title {
        max-width: 100%;
        font-size: clamp(1.7rem, 4vw, 2.8rem);
    }

    .home-product-section {
        padding-top: 42px;
    }
}

@media (max-width: 767px) {
    .slider_section.hero-shop-slider {
        min-height: 560px;
        height: auto;
        padding-top: 16px;
        padding-bottom: 24px;
        position: relative;
    }

    .hero-brand-copy-wrap {
        padding-top: 12px;
        padding-bottom: 8px;
    }

    .hero-brand-copy-kicker {
        font-size: 11px;
        letter-spacing: 0.12em;
        padding: 7px 12px;
    }

    .hero-brand-copy-title {
        margin-top: 14px;
        font-size: clamp(1.3rem, 5.5vw, 1.75rem);
        text-shadow: 0 8px 24px rgba(120, 66, 82, 0.34);
    }

    .hero-brand-copy-text {
        font-size: 0.76rem;
        line-height: 1.32;
        text-shadow: 0 6px 18px rgba(120, 66, 82, 0.28);
    }

    .slider_section.hero-shop-slider .carousel-inner {
        margin-top: 10px;
        padding-bottom: 0;
    }

    .slider_section.hero-shop-slider .slider_bg_box {
        height: 100%;
    }

    .slider_section.hero-shop-slider .slider_bg_box img {
        object-position: center center;
        object-fit: cover;
        filter: saturate(1.08) brightness(0.96);
        transform: scale(1.04);
    }

    .slider_section.hero-shop-slider::before {
        background:
            linear-gradient(180deg, rgba(168, 110, 127, 0.56) 0%, rgba(214, 159, 176, 0.28) 34%, rgba(213, 160, 177, 0.42) 100%),
            radial-gradient(circle at top center, rgba(255, 255, 255, 0.14), transparent 42%);
    }

    .slider_section.hero-shop-slider .carousel-item .detail-box {
        padding: 14px 12px;
        border-radius: 18px;
        margin-bottom: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(243, 205, 216, 0.16));
        border: 1px solid rgba(255, 255, 255, 0.24);
        box-shadow: 0 18px 34px rgba(110, 60, 74, 0.18);
        backdrop-filter: blur(14px);
    }

    .slider_section.hero-shop-slider .hero-kicker {
        margin-bottom: 12px;
    }

    .slider_section.hero-shop-slider .hero-kicker span {
        min-height: 38px;
        padding: 8px 14px;
    }

    .slider_section.hero-shop-slider .hero-kicker span::after {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
    }

    .slider_section.hero-shop-slider .hero-title {
        font-size: clamp(1.25rem, 7vw, 1.7rem) !important;
        max-width: 100%;
        text-shadow: 0 8px 20px rgba(120, 66, 82, 0.2);
    }

    .slider_section.hero-shop-slider .hero-tagline {
        max-width: none;
        font-size: 0.78rem;
    }

    .slider_section.hero-shop-slider .hero-price-row {
        gap: 6px;
    }

    .home-intro-strip {
        gap: 10px;
        margin-bottom: 24px;
    }

    .home-intro-pill {
        font-size: 12px;
        padding: 9px 14px;
    }

    .home-promo-card {
        padding: 14px 12px;
    }

    .home-promo-icon-wrap {
        width: 72px;
        height: 72px;
        margin-bottom: 10px;
    }

    .home-promo-title {
        font-size: 1.35rem;
    }

    .home-promo-text {
        font-size: 0.85rem;
    }

    .home-promo-about {
        font-size: 1.3rem;
    }

    .home-promo-socials {
        gap: 8px;
    }

    .home-promo-socials a {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .home-feature-strip-section {
        padding: 8px 0 58px;
    }

    .home-product-section {
        padding-top: 34px;
    }

    .home-feature-card {
        align-items: flex-start;
        min-height: auto;
        padding: 18px 16px;
        border-radius: 18px;
    }

    .home-feature-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        font-size: 22px;
        border-radius: 14px;
    }

    .home-feature-copy h3 {
        font-size: 1.18rem;
    }

    .home-feature-copy p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .slider_section.hero-shop-slider {
        min-height: 520px;
        padding-top: 12px;
        padding-bottom: 18px;
    }

    .hero-brand-copy {
        max-width: 340px;
        padding: 0 12px;
    }

    .hero-brand-copy-title {
        font-size: clamp(1.2rem, 7vw, 1.55rem);
    }

    .hero-brand-copy-text {
        font-size: 0.72rem;
    }

    .slider_section.hero-shop-slider .carousel-item .detail-box {
        padding: 12px 10px;
        border-radius: 16px;
    }

    .slider_section.hero-shop-slider .hero-kicker span {
        min-height: 34px;
        padding: 7px 12px;
    }

    .slider_section.hero-shop-slider .hero-kicker span::after {
        font-size: 0.62rem;
    }
}

/* Boutique home redesign */
.home-boutique-page {
    background:
        radial-gradient(circle at top center, rgba(250, 225, 231, 0.95), rgba(255, 247, 249, 0.98) 45%, #fffdfd 100%);
    padding: 22px 0 70px;
}

.boutique-home-shell {
    max-width: 1280px;
}

.boutique-hero-panel {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    border-radius: 0 0 34px 34px;
    background: #f9edef;
    box-shadow: 0 26px 60px rgba(143, 88, 103, 0.16);
}

.boutique-hero-bg {
    position: absolute;
    inset: 0;
}

.boutique-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 247, 248, 0.15), rgba(255, 247, 248, 0.32));
}

.boutique-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boutique-hero-content {
    position: relative;
    z-index: 2;
    min-height: 640px;
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    align-items: end;
    gap: 24px;
    padding: 58px 48px 44px;
}

.boutique-hero-visual {
    display: flex;
    align-items: end;
    justify-content: center;
}

.boutique-hero-visual img {
    width: 100%;
    max-width: 360px;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 22px 28px rgba(127, 78, 90, 0.2));
}

.boutique-hero-copy {
    text-align: center;
    padding: 32px 20px 42px;
}

.boutique-hero-kicker {
    margin: 0 0 16px;
    font-family: var(--font-shop);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8c5b68;
}

.boutique-hero-copy h1 {
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.04;
    color: #241517;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.35);
}

.boutique-hero-text {
    max-width: 660px;
    margin: 16px auto 0;
    font-size: clamp(1.05rem, 1.8vw, 1.45rem);
    line-height: 1.5;
    font-weight: 500;
    color: #3e2a30;
}

.boutique-hero-actions {
    margin-top: 28px;
}

.boutique-shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #f8ecee 100%);
    border: 1px solid rgba(140, 91, 104, 0.18);
    box-shadow: 0 10px 22px rgba(137, 91, 103, 0.14);
    color: #2f1d22;
    font-family: var(--font-shop);
    font-size: 1.2rem;
    font-weight: 700;
}

.boutique-shop-btn:hover {
    color: #2f1d22;
    transform: translateY(-1px);
}

.boutique-feature-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 14px 0 18px;
}

.boutique-feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 248, 249, 0.98), rgba(252, 237, 240, 0.98)),
        radial-gradient(circle at top right, rgba(239, 204, 212, 0.5), transparent 35%);
    border: 1px solid rgba(140, 91, 104, 0.12);
    box-shadow: 0 14px 32px rgba(140, 91, 104, 0.08);
}

.boutique-feature-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.78);
    color: #5c3942;
    font-size: 28px;
}

.boutique-feature-body h3 {
    margin: 0 0 4px;
    font-size: 1.55rem;
    color: #2e1f23;
}

.boutique-feature-body p {
    margin: 0;
    color: #4c353b;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 500;
}

.boutique-category-showcase {
    margin-top: 10px;
}

.boutique-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.boutique-category-card {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #fffafb 0%, #faecef 100%);
    box-shadow: 0 16px 36px rgba(140, 91, 104, 0.09);
}

.boutique-category-link {
    display: block;
    color: inherit;
}

.boutique-category-link:hover {
    color: inherit;
}

.boutique-category-image {
    aspect-ratio: 4 / 5.4;
    overflow: hidden;
    background: #f5e6e8;
}

.boutique-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.boutique-category-card:hover .boutique-category-image img {
    transform: scale(1.03);
}

.boutique-category-copy {
    padding: 14px 14px 16px;
    text-align: center;
}

.boutique-category-copy h3 {
    margin: 0 0 6px;
    font-size: 1.9rem;
    line-height: 1.02;
    color: #241517;
}

.boutique-category-copy p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
    color: #403035;
}

.boutique-latest-products {
    margin-top: 34px;
}

.boutique-section-head {
    text-align: center;
    margin-bottom: 22px;
}

.boutique-section-head p {
    margin: 0 0 8px;
    font-family: var(--font-shop);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.82rem;
    font-weight: 700;
    color: #8c5b68;
}

.boutique-section-head h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
    color: #241517;
}

.home-boutique-page .home-product-card {
    border-radius: 18px;
    background: linear-gradient(180deg, #fffdfd 0%, #faecef 100%);
}

.home-boutique-page .home-product-name {
    text-align: center;
}

.home-boutique-page .home-product-price {
    justify-content: center;
}

@media (max-width: 1199px) {
    .boutique-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .boutique-hero-content {
        padding: 52px 28px 38px;
    }
}

@media (max-width: 991px) {
    .home-boutique-page {
        padding-top: 14px;
    }

    .boutique-hero-panel,
    .boutique-hero-content {
        min-height: auto;
    }

    .boutique-hero-content {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 32px 20px 24px;
    }

    .boutique-hero-visual img {
        max-width: 280px;
        max-height: 360px;
    }

    .boutique-feature-row {
        grid-template-columns: 1fr;
    }

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

    .boutique-category-copy h3 {
        font-size: 1.55rem;
    }
}

@media (max-width: 767px) {
    .boutique-home-shell {
        padding-left: 10px;
        padding-right: 10px;
    }

    .boutique-hero-panel {
        border-radius: 0 0 24px 24px;
    }

    .boutique-hero-copy {
        padding: 18px 10px 24px;
    }

    .boutique-hero-copy h1 {
        font-size: clamp(2rem, 9vw, 2.75rem);
    }

    .boutique-hero-text {
        font-size: 0.98rem;
    }

    .boutique-shop-btn {
        font-size: 1rem;
        padding: 13px 24px;
    }

    .boutique-feature-card {
        padding: 16px;
        border-radius: 16px;
    }

    .boutique-feature-body h3 {
        font-size: 1.2rem;
    }

    .boutique-feature-body p {
        font-size: 0.92rem;
    }

    .boutique-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .boutique-category-copy {
        padding: 12px 10px 14px;
    }

    .boutique-category-copy h3 {
        font-size: 1.25rem;
    }

    .boutique-category-copy p {
        font-size: 0.86rem;
    }
}

@media (max-width: 480px) {
    .boutique-grid {
        grid-template-columns: 1fr;
    }

    .boutique-feature-card {
        align-items: flex-start;
    }
}
