/* Баннер с какой-то коллекцией  */
.banner-collection {
    height: 750px;
    position: relative;
    color: #FFFDEA;
}

.banner-collection__photo {
    width: 100%;
    height: 100%;
}

.banner-collection__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-collection__title {
    width: 475px;
    position: absolute;
    left: 300px;
    bottom: 240px;
    display: flex;
    flex-direction: column;
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
}

.banner-collection__title span {
    font-family: 'Bounded';
}

.banner-collection__title span:nth-child(2) {
    align-self: flex-end;
}

.banner-collection__subtitle {
    width: max-content;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 22px;
    text-transform: uppercase;
}

.banner-collection__info {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.banner-collection__link {
    width: 365px;
    height: 45px;
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFDEA;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #FFFDEA;
}

.banner-collection__link:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #FFFDEA;
    transform: scaleX(0);
    transform-origin: left;
    transition: all .4s ease;
}

.banner-collection__link span {
    position: relative;
    z-index: 1;
    transition: all .4s ease;
}

.banner-collection__link:hover:after {
    transform: scaleX(1);
}

.banner-collection__link:hover span {
    color: #281D18;
}

/* Баннер с рекламой телеграма */
.banner-tg {
    height: 540px;
    position: relative;
    margin: 0 auto;
}

.banner-tg__photo {
    width: 100%;
    height: 100%;
}

.banner-tg__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-tg__content {
    position: absolute;
    top: 130px;
    left: 180px;
}

.banner-tg__label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.banner-tg__title {
    font-family: 'Bounded';
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.banner-tg__subtitle {
    display: flex;
    gap: 5px;
    font-weight: 500;
    text-transform: uppercase;
    list-style: none;
    margin-bottom: 20px;
}

.banner-tg__subtitle li:not(:last-of-type):after {
    content: '/';
    margin-left: 5px;
}

.banner-tg__link {
    width: 100%;
    height: 45px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #281D18;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #281D18;
}

.banner-tg__link:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #281D18;
    transform: scaleX(0);
    transform-origin: left;
    transition: all .4s ease;
}

.banner-tg__link span {
    position: relative;
    z-index: 1;
    transition: all .4s ease;
}

.banner-tg__link:hover:after {
    transform: scaleX(1);
}

.banner-tg__link:hover span {
    color: #FFFDEA;
}

@media (max-width: 1180px) {
    /* Баннер с какой-то коллекцией  */
    .banner-collection__title {
        width: 360px;
        top: 50%;
        left: 150px;
        bottom: auto;
        transform: translateY(-50%);
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    /* Баннер с какой-то коллекцией  */
    .banner-collection {
        height: auto;
    }

    .banner-collection__title {
        width: 260px;
        left: 44px;
        font-size: 20px;
    }

    .banner-collection__subtitle {
        max-width: 250px;
        top: 20px;
        text-align: center;
        font-size: 16px;
    }

    .banner-collection__info {
        height: 65%;
        width: auto;
        left: 12px;
    }

    .banner-collection__link {
        width: 300px;
        height: 40px;
        bottom: 30px;
        font-size: 12px;
    }

    /* Баннер с рекламой телеграма */
    .banner-tg {
        height: auto;
    }

    .banner-tg__content {
        top: 30px;
        left: 20px;
    }

    .banner-tg__label {
        gap: 5px;
        font-size: 10px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .banner-tg__label svg {
        width: 12px;
        height: auto;
    }

    .banner-tg__title {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .banner-tg__subtitle {
        flex-direction: column;
        gap: 0;
        list-style: disc;
        margin-left: 20px;
        margin-bottom: 14px;
    }

    .banner-tg__subtitle li:not(:last-of-type):after {
        content: none;
    }

    .banner-tg__link {
        width: 210px;
        height: 40px;
        font-size: 12px;
    }
}