/* Хлебные крошки */
.breadcrumbs {
    margin: 20px 20px 0;
}

.breadcrumbs__container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

.breadcrumbs__link {
    color: rgba(40, 29, 24, 0.8);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumbs__link:hover {
    opacity: 1;
}

.breadcrumbs__current {
    color: rgba(40, 29, 24, 0.5);
}

.breadcrumbs__separator {
    display: flex;
    align-items: center;
}

/* lookbook */
.lookbook {
    margin: 35px 20px;
}

.lookbook__title {
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #281D18;
}

.lookbook__item {
    position: relative;
    display: block;
    text-decoration: none;
}

.lookbook__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.lookbook__text {
    position: absolute;
    left: 30px;
    bottom: 30px;
    font-family: 'Bounded';
    text-transform: uppercase;
    font-weight: 400;
    color: #FFFEF9;
}

.lookbook__text:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.lookbook__item:hover .lookbook__text:after {
    transform: scaleX(1);
}
.lookbook__grid {
    margin-bottom: 80px;
    display: grid;
     grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lookbook__item {
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
}
.lookbook__item:nth-child(5n+1) {
    grid-column: 1 / 3;
    grid-row: span 2;
    font-size: 48px;
    margin-bottom: 75px;
}
.lookbook__item:nth-child(5n+2) {
    grid-column: 3 / 5;
    width: 50%;
    font-size: 22px;
   margin-bottom: 10px;
}

.lookbook__item:nth-child(5n+3) {
    grid-column: 4;
    font-size: 22px;
    margin-bottom: 75px;
}

.lookbook__item:nth-child(5n+4) {
    grid-column: 1 / 3;
    font-size: 48px;
    grid-row: span 2;
}

.lookbook__item:nth-child(5n+5) {
    grid-column: 3 / 5;
    font-size: 48px;
    grid-row: span 2;
}
.lookbook__item:nth-child(5n+2) .lookbook__text, .lookbook__item:nth-child(5n+3) .lookbook__text {
    left: 15px;
    bottom: 15px;
}

 

.lookbook__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lookbook__item:hover img {
    transform: scale(1.05);
}

@media(max-width: 1440px){
    /* lookbook */
    .lookbook__text {
        left: 20px;
        bottom: 20px;
    }
     
}

@media(max-width: 1024px){
    /* lookbook */
    .lookbook__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 10px;
    }
    .lookbook__item--small .lookbook__text {
        font-size: 16px;
    }

    .lookbook__item:nth-child(5n+1) {
        grid-column: 1 / 3;
        grid-row: span 2;
        font-size: 20px;
    }
    .lookbook__item:nth-child(5n+2) {
        grid-column: 1;
        width: 100%;
        font-size: 14px;
        margin-bottom: 0;
    }
    .lookbook__item:nth-child(5n+3) {
        grid-column: 2;
        font-size: 14px;
        margin-bottom: 0;
    }
    .lookbook__item:nth-child(5n+4) {
        grid-column: 1 / 3;
        font-size: 20px;
    }
    .lookbook__item:nth-child(5n+5) {
        grid-column: 1 / 3;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    /* Хлебные крошки */
    .breadcrumbs {
        margin: 15px 15px 0;
    }

    .breadcrumbs .container {
        font-size: 10px;
        gap: 5px;
    }
    
    /* lookbook */
    .lookbook__title {
        font-size: 16px;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .lookbook {
        margin: 23px 15px 50px;
    }

     
}
