/* Refund & Exchange Policy Premium Styling */
.sp-refund-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    border-bottom: 4px solid #e5484d;
}

.sp-refund-hero h1 {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sp-refund-hero p {
    font-size: 16px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
}

.sp-refund-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.sp-refund-content {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    margin-top: -40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.sp-refund-section {
    margin-bottom: 40px;
}

.sp-refund-section:last-child {
    margin-bottom: 0;
}

.sp-refund-section h2 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sp-refund-section h2 i {
    color: #e5484d;
    font-size: 18px;
}

.sp-refund-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 20px;
}

.sp-refund-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    border: 1.5px solid #e2e8f0;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.sp-refund-card.warning-card {
    border-left: 5px solid #e5484d;
}

.sp-refund-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-refund-card h3 i {
    color: #e5484d;
}

.sp-refund-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
    font-family: 'Manrope', sans-serif;
}

/* Contact Details Info Cards */
.sp-refund-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.sp-refund-contact-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.sp-refund-contact-card:hover {
    border-color: #e5484d;
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(229, 72, 77, 0.1);
}

.sp-refund-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff5f5;
    color: #e5484d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.sp-refund-contact-info h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    margin: 0 0 4px 0;
    letter-spacing: 0.5px;
}

.sp-refund-contact-info p {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    word-break: break-all;
}

.sp-refund-contact-info a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s;
}

.sp-refund-contact-info a:hover {
    color: #e5484d;
}

/* Mobile Responsive styling */
@media (max-width: 991px) {
    .sp-refund-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sp-refund-hero {
        padding: 60px 0;
    }
    
    .sp-refund-hero h1 {
        font-size: 32px;
    }
    
    .sp-refund-content {
        padding: 30px 20px;
        margin-top: -30px;
        border-radius: 16px;
    }
    
    .sp-refund-contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
