/* === LOOKBOOK SECTION === */
.section_lookbook {
    position: relative;
    padding: 25px 0;
    background: var(--body-background, #f9f9fb);
}

.heading-bar__title {
    margin-bottom: 30px;
}

.heading-bar__title .link {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color, #061b48);
    text-decoration: none;
}

.lookbooks-banner {
    margin-top: 30px;
}

.lookbooks-banner__photo {
    position: relative;
    display: grid;
    margin: auto;
    grid-template-columns: repeat(16, 1fr);
    grid-template-rows: repeat(16, 1fr);
}

.lookbook-image-wrap {
    grid-column: 1 / span 16;
    grid-row: 1 / span 16;
    text-align: center;
}

.lookbook-image-wrap img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.loookbook-info {
    text-align: center;
    margin-top: 15px;
}

.loookbook-info h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 10px;
    color: var(--text-color);
}

.loookbook-info h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.loookbook-info h3:hover,
.loookbook-info h3:hover a {
    color: var(--primary-color, #061b48);
}

.section_lookbook .btn-main,
.section_lookbook a.btn-main {
    display: inline-block;
    padding: 10px 25px;
    color: var(--primary-color, #061b48);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    border: 1px solid #061b48;
}

.section_lookbook .btn-main:hover,
.section_lookbook a.btn-main:hover {
    background: var(--primary-color, #061b48);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section_lookbook .slick-arrow {
    z-index: 2 !important;
    background: #ebebeb !important;
    border: 1px solid #ebebeb !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    display: block !important;
}
.section_lookbook .slick-arrow:before {
    content: none !important;
}
.section_lookbook .slick-prev {
    left: 10px !important;
}
.section_lookbook .slick-next {
    right: 10px !important;
}

@media (max-width: 767px) {
    .heading-bar__title .link {
        font-size: 20px;
    }
    .loookbook-info h3 {
        font-size: 18px;
    }
    .heading-bar__title {
        margin-bottom: 0px;
    }
    .section_lookbook:not(.lookbook--oneproduct) .lookbooks-container .lookbooks-column {
        margin-top: 0px;
    }
}