/* Секція декор та подарунки - карусель */
.decor-gifts-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.decor-gifts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="20,20 30,15 25,25" fill="rgba(0,184,148,0.03)"/><polygon points="70,40 80,35 75,45" fill="rgba(0,184,148,0.03)"/><circle cx="50" cy="70" r="2" fill="rgba(0,184,148,0.03)"/></svg>');
    pointer-events: none;
}

.decor-gifts-container {
    max-width: 1048px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.decor-gifts-header {
    text-align: center;
    margin-bottom: 40px;
}

.decor-gifts-section-title {

    font-size: 36px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.decor-gifts-section-title::before {
    font-size: 32px;
}

.decor-gifts-section-title::after {
    font-size: 28px;
}

.decor-gifts-section-subtitle {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 0;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Контейнер скролла */
.decor-gifts-scroll-container {
    position: relative;
    margin-bottom: 40px;
}

.decor-gifts-wrapper {
    display: flex;
    gap: 20px; /* Единый gap */
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 10px 0 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #00b894 transparent;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.decor-gifts-wrapper::-webkit-scrollbar {
    height: 6px;
}

.decor-gifts-wrapper::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.decor-gifts-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #00b894, #00cec9);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.decor-gifts-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #00a085, #00b894);
}

/* Карточка товара */
.decor-gift-card {
    flex: 0 0 245px; /* Изменено с 250px на 245px */
    min-width: 245px; /* Добавлено */
    max-width: 245px; /* Добавлено */
    height: 400px; /* Оставляем */
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    white-space: normal;
    flex-shrink: 0; /* Добавлено */
}

.decor-gift-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.decor-gift-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.decor-gift-image-container {
    position: relative;
    height: 240px;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.decor-gift-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.decor-gift-card:hover .decor-gift-image {
    transform: scale(1.03);
}

.decor-gift-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.decor-gift-info {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.decor-gift-content {
    flex: 1;
}

.decor-gift-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 6px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.decor-gift-description {
    font-size: 13px;
    color: #636e72;
    line-height: 1.3;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.decor-gift-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
}

.decor-gift-price {
    font-size: 18px;
    font-weight: 700;
    color: #2d3436;
    text-align: center;
}

/* Сообщение если нет товаров */
.decor-gifts-empty {
    text-align: center;
    padding: 60px 20px;
    color: #636e72;
}

.decor-gifts-empty i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
    display: block;
}

.decor-gifts-empty h3 {
    font-size: 24px;
    color: #636e72;
    margin-bottom: 10px;
}

.decor-gifts-empty p {
    font-size: 16px;
}

/* Навигация */
.decor-gifts-scroll-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.decor-gifts-scroll-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.decor-gifts-scroll-btn:hover:not(:disabled) {
    border-color: #00b894;
    background: #00b894;
    color: white;
    transform: scale(1.1);
}

.decor-gifts-scroll-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.decor-gifts-scroll-btn i {
    font-size: 14px;
    color: #636e72;
    transition: color 0.3s ease;
}

.decor-gifts-scroll-btn:hover:not(:disabled) i {
    color: white;
}

/* Кнопка каталога */
.decor-gifts-catalog-button-container {
    text-align: center;
    margin-top: 30px;
}




/* Адаптивность */
@media (max-width: 768px) {
    .decor-gifts-section {
        padding: 20px 0;
    }

    .decor-gifts-container {
        padding: 0 15px;
    }

    .decor-gifts-scroll-container {
        margin: 0 -12px;
    }

    .decor-gifts-wrapper {
        padding: 10px 0 15px 0; /* Синхронизировано */
        gap: 15px;

        .decor-gifts-section-title {
            font-size: 28px;
        }

        .decor-gift-card {
            flex: 0 0 220px; /* Синхронизировано с другими секциями */
            min-width: 220px;
            max-width: 220px;
            height: 360px;
        }

        .decor-gift-image-container {
            height: 180px; /
        }
    }

    @media (max-width: 480px) {
        .decor-gifts-container {
            padding: 0 10px; /* Синхронизировано */
        }

        .decor-gift-card {
            flex: 0 0 200px; /* Синхронизировано */
            min-width: 200px;
            max-width: 200px;
            height: 340px;
        }

        .decor-gift-image-container {
            height: 160px; /* Синхронизировано */
        }

        .decor-gifts-section-title {
            font-size: 24px;
            flex-direction: column;
            gap: 8px;
        }

        .decor-gifts-wrapper {
            gap: 12px; /* Синхронизировано */
        }
    }
}