.novinki-section {
    padding: 40px 0;
    background: #ffffff;
    width: 100%;
}

.novinki-header {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.novinki-header-content {
    width: 100%;
}

.novinki-title {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 900;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.novinki-all-link-container {
    margin-top: 15px;
}

.novinki-all-link {
    display: inline-block;
    background: #fff300;
    color: #000000;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #fff300;
}

.novinki-all-link:hover {
    background: #ffe033;
    color: #000000;
    transform: translateY(-2px);
    text-decoration: none;
    border-color: #ffe033;
}

.novinki-grid-container {
    width: 100%;
    background: #ffffff;
}

.novinki-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.novinki-product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.novinki-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.novinki-discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.novinki-new-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff300;
    color: #000000;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.novinki-product-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.novinki-product-image-container {
    position: relative;
    height: 200px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.novinki-product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.novinki-no-photo {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 14px;
}

.novinki-product-content {
    padding: 20px;
}

.novinki-product-title {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.novinki-product-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.novinki-old-price {
    color: #95a5a6;
    text-decoration: line-through;
    font-size: 14px;
}

.novinki-current-price {
    color: #000000;
    font-size: 18px;
    font-weight: 800;
}

.novinki-current-price.has-discount {
    color: #e74c3c;
}

@media (max-width: 1200px) {
    .novinki-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .novinki-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .novinki-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .novinki-title {
        font-size: 24px;
    }
    
    .novinki-product-image-container {
        height: 160px;
    }
    
    .novinki-product-content {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .novinki-products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .novinki-all-link {
        padding: 8px 20px;
        font-size: 14px;
    }
}