.banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 100px;
}

.banner-top img {
    width: 100%;
    max-height: 400px;
}


.banner-bottom {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.banner-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    margin-left: 50px;
}

.banner-text h1 {
    font-size: 6.5vw;
    text-transform: uppercase;
    margin: 0;
}

.banner-text h2 {
    font-size: 3vw;
    color: #A50100;
    margin: 0;
    margin-right: 250px;

}

.banner-image {
    display: flex;
    width: 50%;
    justify-content: end;
    align-items: center;
}

.banner-image img {
    width: 100%;
    max-width: 580px;
}

.lookbook-container {
    display: flex;
    flex-direction: row;
    padding: 40px 50px;
    gap: 50px;
}

.cat-mobile {
    display: none;
}

select {
    width: 90%;
    height: 50px;
    font-family: "josefin sans";
    font-weight: 700;
    font-size: 25px;
    text-transform: uppercase;
    text-align: center;
    align-items: center;
    border: 2px solid black;
    overflow-y: auto;
}

.categories {
    padding: 0;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 15%;
}

.cat-sub {
    padding: 0;
}

.cat-sub h6 {
    color: #A50100;
    text-transform: uppercase;
    font-size: 0.78vw;
    font-family: "josefin sans";
    font-weight: 650;
    margin-bottom: 5px;
}

.cat-header {
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.cat-header h3 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.2vw;
    ;
    margin-top: 0;
    margin-bottom: 5px;
}

.cat-header::after {
    content: '';
    display: block;
    width: auto;
    height: 3px;
    background-color: black;
}

.cat-content {
    margin-top: 0;
    margin-bottom: 10px;
    gap: 10px;
}

.categories button {
    display: flex;
    text-align: left;
    justify-content: start;
    flex-direction: column;
    font-family: "lexend";
    color: #434343;
    font-size: 1vw;
    cursor: pointer;
    border: none;
    background-color: #fffc;
    margin: 10px 0;
    padding: 0;
}

button.active {
    margin: 10px 0;
    padding: 0;
    text-align: left;
}

.hidden {
    display: none !important;
}

.divider {
    background-color: #A50100;
    width: 2px;
    height: auto;
}

.lookbook-pics {
    width: 85%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1%;
}

.lookbook-pics div {
    width: 24%;
    position: relative;
}

.lookbook-pics div img {
    width: 100%;
    object-fit: contain;
}

.lookbook-pics div a i {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    color: black;
}

.pages-nav {
    display: none;
}

.next {
    display: flex;
    justify-content: end;
}

.next a {
    display: flex;
    justify-content: end;
    align-items: center;
    text-decoration: none;
    gap: 25px;
    padding-right: 50px;
    margin: 10px 0;
}

.next img {
    width: 40%;
}

.next p {
    font-size: 15px;
    font-family: "lexend";
    text-transform: uppercase;
    color: black;
}

.lightbox {
    font-family: 'lexend', sans-serif;
}

@media (max-width:1300px) {
    .banner-text h2 {
        margin-right: 210px;
    }

    .cat-sub h6 {
        font-size: 1.1vw;
    }

    .cat-header h3 {
        font-size: 1.6vw;
    }

    .cat-content p {
        font-size: 1.4vw;
    }

    .categories {
        width: 30%;
    }

}

@media (max-width:1040px) {
    .banner-text h2 {
        margin-right: 200px;
    }
}

@media (max-width:950px) {
    .banner-text h2 {
        margin-right: 180px;
    }

    .cat-sub h6 {
        font-size: 1.3vw;
    }

    .cat-header h3 {
        font-size: 1.7vw;
    }

    .cat-content p {
        font-size: 1.5vw;
    }

    .categories {
        width: 40%;
    }

}

@media (max-width:950px) {
    .banner-text h2 {
        margin-right: 150px;
    }
}

@media (max-width:780px) {
    .banner-text h2 {
        margin-right: 130px;
    }
}

@media (max-width:768px) {
    .banner {
        gap: 20px
    }

    .banner-bottom {
        flex-direction: column;
    }

    .banner-text {
        width: 100%;
        margin: 0;
        align-items: flex-start;
    }

    .banner-text h1 {
        font-size: 10vw;
        margin-left: 50px;
    }

    .banner-text h2 {
        font-size: 5vw;
    }

    .banner-image {
        width: 100%;
        justify-content: end;
    }

    .banner-image img {
        width: 45%;
    }

    .categories {
        display: none;
    }

    .divider {
        display: none;
    }

    .lookbook-container {
        flex-direction: column;
        padding: 50px 15px 10px;
    }

    .cat-mobile {
        display: flex;
        justify-content: center;
        gap: 40px;
    }

    .cat-mobile div {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 70px;
        border: 2px solid black;
        cursor: pointer;
    }

    .cat-mobile h3 {
        margin: 0;
        text-transform: uppercase;
        font-weight: 500;
    }

    .lookbook-pics {
        gap: 20px;
        justify-content: center;
        margin: 0 40px;
        row-gap: 80px;
    }

    .lookbook-pics div {
        width: calc(50% - 10px);
    }

    .lookbook-pics div a i {
        font-size: 25px;
    }

    .pages-nav {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .pages-nav span {
        font-size: 10pxw;
        cursor: pointer;
        font-family: "lexend";
    }

    .pages-nav span:first-child {
        font-weight: bold;
        color: #A50100;
    }
}