:root {
    --color-header: #1e2361;
    --color-gold: #1e2361;
    --color-subgold: #ffe202;
    --color-white: #fff;
    --color-black: #000;
    --primary-color: #b69d5d;
    --text-color: #262626;
    --border-radius: 10px;
    --lite-color: #fdc56b;
    --dark-color: #1e2361;
    --accent-color: #9591fc;
}

/* Стили для блока новинок */
.new-products {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(253, 197, 107, 0.25) 0%, rgba(149, 145, 252, 0.2) 100%);
    max-width: unset;
}

.new-products .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.new-products__title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.new-products__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.new-products__text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.new-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.new-products__item {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(182, 157, 93, 0.2);
}

.new-products__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(30, 35, 97, 0.15);
    border-color: var(--primary-color);
}

.new-products__image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.new-products__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.new-products__item:hover .new-products__image {
    transform: scale(1.08);
}

.new-products__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--dark-color);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.new-products__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.new-products__name {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.4;
    flex-grow: 1;
}

.new-products__price {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.new-products__price del {
    color: #95a5a6;
    font-size: 1rem;
    margin-right: 8px;
}

.new-products__price ins {
    text-decoration: none;
}

.new-products__button {
    display: inline-block;
    background-color: var(--dark-color);
    color: var(--color-white);
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.new-products__button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(182, 157, 93, 0.3);
}

/* Адаптивность */
@media (max-width: 992px) {
    .new-products__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .new-products {
        padding: 40px 0;
    }

    .new-products__title {
        font-size: 2rem;
    }

    .new-products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .new-products__grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .new-products__title {
        font-size: 1.8rem;
    }

    .new-products__text {
        font-size: 1rem;
    }
}

/* Анимации для блока новинок */
.new-products[data-animate-on-scroll] .new-products__title[data-animate="fadeInDown"] {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.new-products[data-animate-on-scroll] .new-products__title[data-animate="fadeInDown"].animated {
    opacity: 1;
    transform: translateY(0);
}

.new-products[data-animate-on-scroll] .new-products__text[data-animate="fadeInDown"] {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.new-products[data-animate-on-scroll] .new-products__text[data-animate="fadeInDown"].animated {
    opacity: 1;
    transform: translateY(0);
}

.new-products[data-animate-on-scroll] .new-products__item[data-animate="fadeInUp"] {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.new-products[data-animate-on-scroll] .new-products__item[data-animate="fadeInUp"].animated {
    opacity: 1;
    transform: translateY(0);
}