.gallery-section__card__gift{
    display: flex;
    color: #FFC600;
    font-family: 'Rubik';
    font-size: 14px;
    gap: 18px;
    max-width:259px;
    margin-bottom:12px;
    line-height:120%;
    align-items: center;
}
.gallery-section {
    width: 100%;
    padding: 60px 0;
    background-color: #FFFFFF;
    margin-bottom: 220px;
    margin-top:80px;
}
.gallery-section__card .profiles-section__button{
    float: right;
    margin-top: auto;
    color: #FF0000;
}

.gallery-section__container {
    max-width: 1866px;
    margin: 0 auto;
    padding: 0 285px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
@media screen and (max-width: 1919px) and (min-width: 1385px) {
    .gallery-section__container {
        padding: 0 120px !important;
    }
}
.gallery-section__title {
    font-family: 'Rubik', Arial, sans-serif;
    font-weight: 500;
    font-size: 34px;
    line-height: 1.3em;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #353535;
    margin: 0;
}

.gallery-section__carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-section__carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.gallery-section__card {
    min-width: 100%;
    background-color: #FFFFFF;
    border-radius: 14px;
    display: flex;
    gap: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.gallery-section__card-left {
    background-color: #F6F8FA;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gallery-section__card-title {
    font-family: 'Rubik', Arial, sans-serif;
    font-weight: 500;
    font-size: 34px;
    line-height: 1.3em;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #353535;
    margin: 0;
    padding: 30px;
    padding-bottom:22px !important;
}

.gallery-section__card-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
        padding-left: 30px;
}

.gallery-section__card-label {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.4em;
    color: #353535;
    margin: 0;
}

.gallery-section__card-description {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4em;
    color: #353535;
    margin: 0;
}

.gallery-section__card-price-block {
    background-color: #ED1E79;
    padding: 30px;
    border-bottom-left-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top:auto;
    gap: 20px;
}

.gallery-section__card-price-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gallery-section__card-price-label {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.4em;
    color: #FFFFFF;
    margin: 0;
}

.gallery-section__card-price-value {
    font-family: 'Rubik', Arial, sans-serif;
    font-weight: 500;
    font-size: 64px;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0;
}

.gallery-section__card-button {
    padding: 12px 24px;
    background-color: #EFEC1F;
    border: none;
    border-radius: 6px;
    font-family: 'Rubik', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2em;
    text-transform: uppercase;
    color: #353535;
    cursor: pointer;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.gallery-section__card-button:hover {
    opacity: 0.9;
}

.gallery-section__card-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.gallery-section__card-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 400px;
}

.gallery-section__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-section__card-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 2;
}

.gallery-section__badge-icon {
    object-fit: contain;
}

.gallery-section__navigation {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
        align-self: flex-end;
}

.gallery-section__nav-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #ED1E79;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-section__nav-button--next {

    border-color: #ED1E79;
}

.gallery-section__nav-button:hover {
    opacity: 0.8;
}

.gallery-section__nav-icon {

}

/* Адаптивность */
@media (max-width: 1440px) {
    .gallery-section__container {
        padding: 0 120px;
    }
    .gallery-section__card-price-value{
        font-size:40px;
    }
}

@media (max-width: 1024px) {
    .gallery-section__container {
        padding: 0 60px;
        gap: 30px;
    }
    
    .gallery-section__card {
        flex-direction: column;
    }
    
    .gallery-section__card-left {
        padding: 30px;
    }
    
    .gallery-section__card-image-wrapper {
        min-height: 300px;
    }
    
    .gallery-section__card-price-value {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 40px 0;
    }
    .gallery-section__card-image{
        height:500px;
    }
    .gallery-section__container {
        padding: 0 20px;
        gap: 24px;
    }
    
    .gallery-section__title {
        font-size: 24px;
    }
    
    .gallery-section__card-left {
        padding: 24px 20px;
        gap: 20px;
    }
    
    .gallery-section__card-title {
        font-size: 20px;
    }
    
    .gallery-section__card-label,
    .gallery-section__card-description {
        font-size: 14px;
    }
    
    .gallery-section__card-price-block {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .gallery-section__card-price-value {
        font-size: 32px;
    }
    
    .gallery-section__card-button {
        width: 100%;
    }
    
    .gallery-section__card-image-wrapper {
        min-height: 250px;
    }
}

