.promotion-section {
        background: white;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .promotion-header-row {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        padding-bottom: 15px;
        border-bottom: 2px solid #ff6b35;
        margin-bottom: 20px;
    }
    
    .promotion-name {
        margin: 0;
        color: #ff6b35;
        font-weight: 700;
        font-size: 1.2rem;
    }
    
    .promotion-dash {
        color: #666;
        font-weight: 600;
    }
    
    .promotion-date {
        color: #666;
        font-size: 0.95rem;
    }

    .discount-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #ff6b35;
        color: white;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 600;
        z-index: 2;
    }

    .hot-deal-banner {
        background: linear-gradient(135deg, #ff6b35, #e55a2b);
        border-radius: 12px;
        padding: 40px 20px;
        text-align: center;
        color: white;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }

    .hot-deal-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hot-deal-badge {
        background: #000;
        color: white;
        padding: 8px 20px;
        border-radius: 4px;
        font-size: 1.2rem;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .hot-deal-title {
        margin: 0;
        font-size: 2.5rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hot-deal-count {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 500;
    }