/* Promotion page layout */
.promotion-page .page-header {
    padding: 0 20px 0;
}

.promotion-page .page-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promotion-page .promotion-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Product grid refinement for Promotion Page */
.promotion-grid {
    padding: 40px 0 0;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.promotion-page .product-card {
    padding: 20px 15px;
    height: 90%;
}

@media (max-width: 768px) {
    .promotion-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .promotion-grid {
        grid-template-columns: 1fr;
    }
}

/* Empty state */
.no-promotion {
    background: #f9f9f9;
    border-radius: 12px;
    border: 2px dashed #eee;
    padding: 40px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .promotion-page .page-title {
        font-size: 30px;
    }

    .price-sale {
        font-size: 16px;
    }
}