/* ===== STRONA PROMOCJI ===== */
#promotions {
    padding: 80px 0;

}

/* Sekcja nagłówka */
.section-header {
    margin-bottom: 50px;
}



.gold-gradient {
    background: linear-gradient(135deg, #f5af19, #f12711);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    color: #aaa;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Filtry */
.promo-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
   padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 40px;

    flex-wrap: wrap;
    gap: 15px;
    border-color: #c9a84c;
	background: var(--white, #fff);
    border: 1px solid var(--border, #e5ddd6);
	
}

.promo-count p {
    color: #4e2727;
    font-size: 16px;
    margin: 0;
}

.promo-count strong {
    color: #ffba00;
}

.promo-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-sort span {
    color: #aaa;
    font-size: 14px;
}

.promo-sort select {
    
    color: #4e2727;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
background: var(--white, #fff);
    border: 1px solid var(--border, #e5ddd6);
}

/* Siatka produktów */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.promo-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #1f1f1f;
    transition: all 0.3s ease;
    position: relative;
	    border: 1px solid var(--border, #e5ddd6);
}

.promo-card:hover {
    transform: translateY(-8px);
    border-color: #f5af19;
    box-shadow: 0 10px 40px rgba(245, 175, 25, 0.15);
}

/* Plakietki */
.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 5;
}

.discount-badge {
    background: linear-gradient(135deg, #f12711, #f5af19);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    text-align: center;
}

.hot-badge {
    background: #f12711;
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    animation: pulse-badge 1.5s infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Obrazek */
.promo-image {
    padding: 20px 20px 0;
    text-align: center;

}

.promo-image img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.promo-card:hover .promo-image img {
    transform: scale(1.05);
}

/* Szczegóły produktu */
.promo-details {
    padding: 20px 20px 25px;
}

.promo-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
}

.promo-title a {
    color: #767676;
    text-decoration: none;
    transition: color 0.3s;
}

.promo-title a:hover {
    color: #f5af19;
}

.promo-rating {
    color: #f5af19;
    font-size: 16px;
    margin-bottom: 10px;
}

.promo-rating .rating-count {
    color: #666;
    font-size: 13px;
}

.promo-rating .no-rating {
    color: #555;
    font-size: 13px;
}

.promo-price {
    font-size: 24px;
    font-weight: 700;
    color: #f5af19;
    margin-bottom: 15px;
}

.promo-price ins {
    text-decoration: none;
    color: #f5af19;
}

.promo-price del {
    color: #666;
    font-size: 16px;
    margin-right: 10px;
    text-decoration: line-through;
}

/* Przyciski */
.promo-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promo-add-to-cart {
    background: linear-gradient(135deg, #f5af19, #f12711);
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.promo-add-to-cart:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 25px rgba(245, 175, 25, 0.4);
    color: #fff;
}

.promo-details-link {
    color: #888;
    text-align: center;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.promo-details-link:hover {
    color: #f5af19;
}

/* Pusty stan */
.promo-empty {
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
}

.promo-empty p {
    font-size: 20px;
    margin-bottom: 20px;
}

.promo-back-to-shop {
    display: inline-block;
    background: linear-gradient(135deg, #f5af19, #f12711);
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.promo-back-to-shop:hover {
    color: #fff;
    box-shadow: 0 5px 25px rgba(245, 175, 25, 0.4);
}

/* Footer */
.promo-footer {
    text-align: center;
    margin-top: 20px;
}

.promo-show-all {
    display: inline-block;
    color: #f5af19;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 30px;
    border: 2px solid #f5af19;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.promo-show-all:hover {
    background: #f5af19;
    color: #0a0a0a;
}

/* Responsywność */
@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }
    
    .promo-filters {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .promo-sort {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .promo-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .promo-price {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    #promotions {
        padding: 40px 0;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto 30px;
    }
}