.pw-coupon-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pw-coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
}

.pw-coupon-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #e5e7eb;
}

.pw-coupon-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Removed: .pw-coupon-badge */

.pw-coupon-header {
    background: linear-gradient(to right, #1e40af, #3b82f6);
    color: white;
    padding: 15px;
    text-align: center;
}

.pw-coupon-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.pw-coupon-body {
    padding: 20px;
}

.pw-code-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px dashed #3b82f6;
}

.pw-coupon-code {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e40af;
    letter-spacing: 0.5px;
}

.pw-copy-btn {
    background: linear-gradient(to right, #1e40af, #3b82f6);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.pw-copy-btn:hover {
    opacity: 0.9;
    transform: scale(1.03);
}

.pw-coupon-details {
    margin-bottom: 15px;
}

.pw-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.pw-detail-item i {
    color: #10b981;
    margin-right: 8px;
    font-size: 1rem;
    width: 16px;
}

.pw-discount-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 6px;
}

.pw-expiry-badge {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 6px;
}

.pw-coupon-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e5e7eb;
}

.pw-applicable-title {
    font-weight: 500;
    color: #4b5563;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .pw-coupon-container { padding: 10px; }
    .pw-coupons-grid { grid-template-columns: 1fr; gap: 15px; max-width: 400px; margin: 0 auto; }
    .pw-coupon-header h3 { font-size: 1rem; }
    .pw-code-container { flex-direction: column; gap: 10px; text-align: center; }
    .pw-copy-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .pw-coupon-card { margin: 0 5px; }
    .pw-coupon-body { padding: 15px; }
    .pw-coupon-code { font-size: 1rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .pw-coupons-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}