/* ==========================================
   REGIONAL COUPONS TABLE STYLES
   ========================================== */

.wcp-regional-coupon-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.wcp-regional-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #2c3e50;
    letter-spacing: -0.5px;
}

.wcp-regional-promo-dates {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin: 0 0 25px 0;
}

.wcp-regional-table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.wcp-regional-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 15px;
}

.wcp-regional-table thead {
    background: #f8f9fa;
}

.wcp-regional-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    color: #2c3e50;
    border-bottom: 2px solid #dee2e6;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wcp-regional-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
}

.wcp-regional-table tbody tr:hover {
    background: #f8f9fa;
    transition: background 0.2s ease;
}

.wcp-regional-table tbody tr:last-child td {
    border-bottom: none;
}

.wcp-code-cell {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    color: #2c3e50;
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wcp-regional-coupon-section {
        padding: 20px;
        margin: 20px auto;
    }
    
    .wcp-regional-title {
        font-size: 22px;
    }
    
    .wcp-regional-table th,
    .wcp-regional-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .wcp-code-cell {
        font-size: 14px;
    }
}