/* Секция "Капсулы" */
.capsules {
    margin-top: 100px;
    margin-bottom: 100px;
    padding: 0 95px;
}

.capsules__container {
    max-width: 1411px;
    margin: 0 auto;
}

/* Верхний блок с заголовком */
.capsules__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    min-height: 86px;
}

/* Левый блок с подзаголовком и заголовком */
.capsules__left {
    display: flex;
    flex-direction: column;
    gap: 1.5px;
}

/* Подзаголовок "Капсулы" */
.capsules__subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 9px 0px 9px 0px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    width: 103px;
    height: 30px;
    box-sizing: border-box;
}

.capsules__subtitle-text {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1em;
    text-transform: uppercase;
    color: #333333;
    letter-spacing: 0.02em;
}

.capsules__subtitle-icon {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

/* Основной заголовок */
.capsules__title {
    font-family: 'BodoniNova', serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.5em;
    color: #000000;
    margin: 0;
}


/* Описание под заголовком */
.capsules__description {
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
    margin-bottom: 15px;
}

/* Сетка плиток */
.capsules__grid {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
    flex-wrap: wrap;
}

/* Базовые стили плитки */
.capsules__tile {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    width: calc(25% - 15px);
    flex-shrink: 0;
    box-sizing: border-box;
    display: block;
    text-decoration: none;
    color: inherit;
}
@media(max-width:1600px) {
    .capsules__tile {
        height: 390px;
    }
}

/* Плитки с изображениями */
.capsules__tile--image {
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.capsules__tile-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    z-index: 1;
}

.capsules__tile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.capsules__tile-title {
    font-family: 'BodoniNova', serif;
    font-weight: 400;
    font-size: 34px;
    line-height: 1.23em;
    color: #FFFFFF;
    margin: 0;
    padding: 34px;
    z-index: 3;
    position: relative;
}

/* Плитка "Смотреть все коллекции" */
.capsules__tile--all {
    background: #fffaf5;
    border: 1px solid #811823;
    display: flex;
    align-items: flex-end;
    padding: 31px;
}

.capsules__tile-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
}

.capsules__tile-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    min-width: 0;
    margin-right: 20px;
}

.capsules__tile-line {
    font-family: 'BodoniNova', serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 1.2em;
    color: #811823;
    white-space: nowrap;
}

.capsules__tile-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #811823;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Hover эффекты */
.capsules__tile--image:hover .capsules__tile-image {
    transform: scale(1.05);
}

/* Responsive */
@media (min-width: 1601px) {
    .capsules__container {
        max-width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .products-row {
        flex-wrap: wrap;
    }
    .product-card {
        width: calc(50% - 10px);
    }
    .product-card__image {
        height: 650px;
    }
    .capsules__tile {
        width: calc(50% - 10px);
        height: 650px;
    }
}

@media (max-width: 768px) {
    .capsules {
        margin-top: 40px;
        margin-bottom: 50px;
        padding: 0 15px;
    }

    .capsules__title {
        font-size: 28px;
        line-height: 1.1em;
    }

    .capsules__description {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .capsules__left {
        gap: 10px;
    }
    .capsules__grid {
        gap: 10px;
    }
    .capsules__tile {
        width: 48%;
        height: 250px;
    }
    .capsules__tile-title {
        font-size: 22px;
        padding: 20px 15px;
    }
    .capsules__tile--all {
        padding: 20px 15px;
    }
    .capsules__tile-line {
        font-size: 22px;
    }
    .capsules__tile-icon {
        display: none;
    }
}
