.boutique__hero {
    position: relative;
    height: 100svh;
    overflow: hidden;
}

.boutique__hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.boutique__breadcrumbs {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 254, 249, 0.5);
    font-size: 12px;
    text-transform: uppercase;
    z-index: 1;
}

.boutique__breadcrumbs a {
    color: rgba(255, 254, 249, 0.8);
    text-decoration: none;
}

.boutique__breadcrumbs a:hover {
    text-decoration: underline;
}

.boutique__title {
    position: absolute;
    font-weight: 400;
    color: #FFFEF9;
    text-transform: uppercase;
    line-height: 1;
}

.boutique__title--small {
    top: 70px;
    left: 20px;
    font-size: 22px;
    z-index: 1;
}

.boutique__title--large {
    font-family: 'Bounded';
    font-size: 120px;
    left: 180px;
    bottom: 150px;
}

.boutique__title--large-second {
    font-family: 'Bounded';
    font-size: 120px;
    left: 540px;
    bottom: 30px;
}

.boutique__container {
    max-width: 1586px;
    padding: 0 15px;
    margin: 0 auto;
}

.boutique__section {
    margin-top: 80px;
    background: #FFFEF9;
}

.boutique__section--first .boutique__section-inner--first {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.boutique__image-first {
    overflow: hidden;
}

.boutique__image-first img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.boutique__image-first:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.boutique__text-first {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 64px 0 0 37px;
    max-width: 510px;
}

.boutique__header-row {
    display: flex;
    align-items: center;
    gap: 33px;
}

.boutique__bars-icon {
    height: auto;
}

.boutique__heading-first-main {
    font-family: 'Bounded';
    font-size: 48px;
    font-weight: 400;
    color: #281D18;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.boutique__heading-first-sub {
    font-family: 'Bounded';
    font-size: 22px;
    font-weight: 400;
    color: #281D18;
    text-transform: uppercase;
}

.boutique__text-first-content {
    font-size: 14px;
    color: #281D18;
}

.boutique__text-first-content b {
    font-weight: 600;
}

.boutique__text-first-content p + p {
    margin-top: 20px;
}

.boutique__section--second .boutique__section-inner--second {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 40px;
}

.boutique__heading-second {
    font-family: 'Bounded';
    font-size: 48px;
    color: #281D18;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 40px;
}

.boutique__text-second {
    font-size: 14px;
    color: #281D18;
}

.boutique__text-second b {
    font-weight: 600;
}

.boutique__text-second-top p + p {
    margin-top: 20px;
}

.boutique__text-second-top, .boutique__text-third {
    max-width: 440px;
}

.boutique__image-second {
    overflow: hidden;
}
.boutique__image-second img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.boutique__image-second:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.boutique__section--third {
    margin-top: 80px;
}

.boutique__section--third .boutique__section-inner--third {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.boutique__image-third {
    overflow: hidden;
    height: 100%;
}

.boutique__image-third img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.boutique__image-third:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.boutique__content-third {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.boutique__heading-third {
    font-family: 'Bounded';
    font-size: 48px;
    color: #281D18;
    text-transform: uppercase;
    font-weight: 400;
}

.boutique__text-third {
    font-size: 14px;
    color: #281D18;
}

.boutique__text-third p + p {
    margin-top: 20px;
}

.boutique__image-square {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.boutique__image-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.boutique__image-square:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.boutique__slider {
    margin-top: 80px;
    position: relative;
}

.boutique__slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.boutique__swiper-button-prev,
.boutique__swiper-button-next {
    width: 3px;
    height: 155px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #B5A99D;
    cursor: pointer;
    z-index: 3;
}

.boutique__swiper-button-prev {
    left: 20px;
}

.boutique__swiper-button-next {
    right: 20px;
}

.boutique__swiper-pagination {
    position: absolute;
    bottom: 25px !important;
    left: 50% !important;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 1;
    opacity: 1;
}

.boutique__swiper-pagination .swiper-pagination-bullet {
    width: 62px;
    height: 3px;
    border-radius: 0;
    transition: all 0.4s ease;
    opacity: 1;
    background: rgba(40, 29, 24, 0.2);
}

.boutique__swiper-pagination .swiper-pagination-bullet-active {
    width: 155px;
}

@media (max-width: 1440px) {
    .boutique__title--large {
        left: 80px;
        font-size: 100px;
    }
    .boutique__title--large-second {
        left: 420px;
        font-size: 100px;
    }
    .boutique__bars-icon {
        height: 100px;
    }
    .boutique__text-first {
        padding: 40px 0 0 20px;
    }
    .boutique__heading-first-main {
        font-size: 42px;
    }
    .boutique__heading-first-sub {
        font-size: 20px;
    }
    .boutique__heading-second {
        font-size: 42px;
    }
    .boutique__heading-third {
        font-size: 42px;
    }
}

@media (max-width: 1280px) {
    .boutique__text-first {
        padding: 20px 0 0 15px;
    }
    .boutique__heading-first-main {
        font-size: 32px;
    }
    .boutique__heading-first-sub {
        font-size: 16px;
    }
    .boutique__heading-second {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .boutique__heading-third {
        font-size: 32px;
    }
    .boutique__header-row {
        gap: 20px;
    }
    .boutique__bars-icon {
        height: 80px;
    }
}

@media (max-width: 1150px) {
    .boutique__image-first img,
    .boutique__image-second img,
    .boutique__image-third img {
        height: 100%;
    }
    .boutique__section--first .boutique__section-inner--first {
        gap: 30px;
    }
    .boutique__text-first {
        padding: 0;
    }
}

@media (max-width: 1024px) {
    .boutique__title--large {
        left: 40px;
        font-size: 80px;
        bottom: 110px;
    }
    .boutique__title--large-second {
        left: 300px;
        font-size: 80px;
    }
    .boutique__heading-second {
        font-size: 28px;
    }
    .boutique__heading-third {
        font-size: 28px;
    }
    .boutique__heading-first-main {
        font-size: 28px;
    }
    .boutique__section--first .boutique__section-inner--first {
        gap: 30px;
    }
    .boutique__content-third {
        gap: 30px;
    }
    .boutique__header-row {
        gap: 15px;
    }
}

@media (max-width: 900px) {
    .boutique__heading-first-main {
        font-size: 28px;
    }
    .boutique__heading-first-sub {
        font-size: 16px;
    }
    .boutique__heading-second {
        font-size: 28px;
    }
    .boutique__heading-third {
        font-size: 28px;
    }
    .boutique__text-first-content {
        font-size: 13px;
    }
    .boutique__text-second {
        font-size: 13px;
    }
    .boutique__text-third {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .boutique__hero {
        height: 70svh;
    }

    .boutique__breadcrumbs {
        top: 15px;
        left: 15px;
        gap: 5px;
        font-size: 10px;
    }

    .boutique__container {
        padding: 0;
    }

    .boutique__title--small {
        top: 50px;
        left: 15px;
        font-size: 16px;
    }

    .boutique__title--large {
        font-size: 38px;
        left: 15px;
        bottom: 58px;
    }

    .boutique__title--large-second {
        font-size: 38px;
        left: 120px;
        bottom: 12px;
    }

    .boutique__section {
        margin-top: 60px;
    }

    .boutique__section--first .boutique__section-inner--first,
    .boutique__section--second .boutique__section-inner--second,
    .boutique__section--third .boutique__section-inner--third {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .boutique__image-first {
        order: 1;
    }

    .boutique__text-first {
        order: 2;
        padding: 0 15px;
    }

    .boutique__image-second {
        order: 1;
    }

    .boutique__text-second {
        order: 2;
        padding: 0 15px;
        max-width: 100%;
    }

    .boutique__heading-second {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .boutique__image-third {
        order: 1;
    }

    .boutique__content-third {
        order: 2;
        gap: 20px;
    }

    .boutique__heading-third {
        font-size: 20px;
        padding: 0 15px;
    }

    .boutique__slider {
        margin-top: 60px;
    }

    .boutique__swiper-button-prev,
    .boutique__swiper-button-next {
        height: 70px;
    }

    .boutique__swiper-pagination .swiper-pagination-bullet {
        width: 50px;
    }

    .boutique__swiper-pagination .swiper-pagination-bullet-active {
        width: 124px;
    }

    .boutique__heading-first-main {
        font-size: 20px;
    }

    .boutique__heading-first-sub {
        font-size: 14px;
    }

    .boutique__bars-icon {
        height: 77px;
    }

    .boutique__text-first-content {
        font-size: 14px;
    }

    .boutique__text-second {
        font-size: 14px;
    }

    .boutique__text-third {
        font-size: 14px;
        padding: 0 15px;
    }

    .boutique__section--second .boutique__section-inner--second {
        gap: 20px;
    }

    .boutique__section--third .boutique__section-inner--third {
        gap: 20px;
    }

    .boutique__image-square {
        aspect-ratio: 1/0.9;
    }
}
/*@media (max-width: 600px) {*/
/*    .boutique__title--large {*/
/*        font-size: 30px;*/
/*        bottom: 60px;*/
/*    }*/
/*    .boutique__title--large-second {*/
/*        font-size: 30px;*/
/*        left: 100px;*/
/*        bottom: 20px;*/
/*    }*/
/*    .boutique__heading-first-main {*/
/*        font-size: 18px;*/
/*    }*/
/*    .boutique__heading-first-sub {*/
/*        font-size: 13px;*/
/*    }*/
/*    .boutique__bars-icon {*/
/*        height: 35px;*/
/*    }*/
/*    .boutique__header-row {*/
/*        gap: 10px;*/
/*    }*/
/*}*/

/*@media (max-width: 500px) {*/
/*    .boutique__hero {*/
/*        min-height: 500px;*/
/*    }*/
/*    .boutique__title--large {*/
/*        font-size: 24px;*/
/*        left: 10px;*/
/*        bottom: 50px;*/
/*    }*/
/*    .boutique__title--large-second {*/
/*        font-size: 24px;*/
/*        left: 80px;*/
/*        bottom: 15px;*/
/*    }*/
/*    .boutique__title--small {*/
/*        font-size: 14px;*/
/*        top: 45px;*/
/*    }*/
/*}*/

/*@media (max-width: 425px) {*/
/*    .boutique__heading-second,*/
/*    .boutique__heading-third {*/
/*        font-size: 14px;*/
/*        padding: 0 15px;*/
/*    }*/
/*    .boutique__heading-first-main {*/
/*        font-size: 16px;*/
/*    }*/
/*    .boutique__heading-first-sub {*/
/*        font-size: 12px;*/
/*    }*/
/*    .boutique__text-first-content {*/
/*        font-size: 11px;*/
/*    }*/
/*    .boutique__text-second {*/
/*        font-size: 11px;*/
/*    }*/
/*    .boutique__text-third {*/
/*        font-size: 11px;*/
/*    }*/
/*    .boutique__bars-icon {*/
/*        height: 30px;*/
/*    }*/
/*    .boutique__header-row {*/
/*        gap: 8px;*/
/*    }*/
/*    .boutique__title--large {*/
/*        font-size: 20px;*/
/*        bottom: 45px;*/
/*    }*/
/*    .boutique__title--large-second {*/
/*        font-size: 20px;*/
/*        left: 70px;*/
/*        bottom: 12px;*/
/*    }*/
/*}*/

/*@media (max-width: 375px) {*/
/*    .boutique__title--large {*/
/*        font-size: 18px;*/
/*        bottom: 40px;*/
/*    }*/
/*    .boutique__title--large-second {*/
/*        font-size: 18px;*/
/*        left: 60px;*/
/*        bottom: 10px;*/
/*    }*/
/*    .boutique__heading-first-main {*/
/*        font-size: 14px;*/
/*    }*/
/*    .boutique__heading-first-sub {*/
/*        font-size: 11px;*/
/*    }*/
/*    .boutique__bars-icon {*/
/*        height: 25px;*/
/*    }*/
/*}*/