/* ===== Refund & Return Page - Optimized Typography ===== */

/* Hero Section - Optimized */
.refund-hero {
    position: relative;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 0.98)),
                var(--bg-image);
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.refund-hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.refund-hero-title {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.refund-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
}

.refund-hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3.5rem;
    position: relative;
    z-index: 2;
}

.refund-stat {
    text-align: center;
    padding: 1.2rem;
    min-width: 130px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.refund-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.refund-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
}

.refund-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Refund Sections */
.refund-section {
    padding: 5rem 0;
    position: relative;
}

.refund-section.bg-light {
    background-color: var(--bg-light) !important;
}

/* Refund Cards */
.refund-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.refund-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.refund-card-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.refund-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.25);
}

.refund-card-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-family: var(--font-heading);
    font-weight: 700;
}

.refund-card-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.policy-duration {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.25);
}

/* Commitment Section */
.refund-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--text-color);
    padding: 0 1rem;
}

.commitment-features {
    margin-top: 2.5rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.feature-item .feature-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.6rem;
    color: white;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Policy Requirements */
.policy-requirements {
    margin: 2.5rem 0;
}

.policy-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.policy-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.policy-item.policy-important {
    background: rgba(211, 47, 47, 0.08);
    border-left: 4px solid var(--primary-color);
}

.policy-check {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
}

.policy-check.checked {
    color: var(--primary-color);
}

.policy-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
}

.policy-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Timeline */
.policy-timeline {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
}

.policy-timeline h4 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
    font-weight: 600;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    padding: 0 1rem;
}

.policy-timeline .step-number {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 0.8rem;
    box-shadow: 0 6px 18px rgba(211, 47, 47, 0.25);
}

.step-content h5 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--text-color);
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Non-Returnable Items */
.non-returnable-items {
    margin: 2.5rem 0;
}

.non-return-item {
    display: flex;
    
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    border-radius: 14px;
    background: rgba(255, 82, 82, 0.04);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.non-return-item:hover {
    background: rgba(255, 82, 82, 0.08);
    transform: translateY(-3px);
}

.item-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.item-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.item-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.non-returnable-note {
    display: flex;
    gap: 1.5rem;
    padding: 1.8rem;
    background: rgba(33, 150, 243, 0.08);
    border-radius: 14px;
    border-left: 4px solid #2196F3;
    margin-top: 2rem;
}

.note-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    background: #2196F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.note-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* Refund Process */
.refund-process {
    margin: 2.5rem 0;
}

.process-step {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.process-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.refund-section .step-number {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-header h4 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--text-color);
    font-weight: 600;
}

.step-body p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 3.5rem;
}

.refund-timeline-visual {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
}

.refund-timeline-visual h5 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.timeline-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-point {
    text-align: center;
    position: relative;
    z-index: 2;
}

.point {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 auto 0.6rem;
    box-shadow: 0 6px 18px rgba(211, 47, 47, 0.25);
}

.point-label {
    font-size: 0.85rem;
    color: var(--text-light);
    max-width: 120px;
    margin: 0 auto;
    line-height: 1.3;
}

/* Shipping Costs */
.cost-responsibility {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2.5rem 0;
}

.responsibility-item {
    padding: 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.responsibility-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.responsibility-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-secondary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.responsibility-header h4 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--text-color);
    font-weight: 600;
}

.responsibility-body h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.responsibility-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.cost-estimate {
    background: rgba(255, 152, 0, 0.08);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid #FF9800;
}

.estimate-label {
    font-weight: 600;
    color: var(--text-color);
    margin-right: 0.5rem;
    font-size: 0.95rem;
}

.estimate-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FF9800;
    margin-right: 0.5rem;
}

.estimate-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.covered-items {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.covered-items li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.covered-items li i {
    color: #4CAF50;
    font-size: 1rem;
}

.shipping-note {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(33, 150, 243, 0.08);
    border-radius: 16px;
    margin-top: 2.5rem;
    border-left: 4px solid #2196F3;
}

.note-check {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    background: #2196F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.note-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.note-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* FAQ Section */
.accordion {
    margin-top: 2rem;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 10px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--card-bg);
}

.accordion-button {
    background: var(--bg-light);
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 1.2rem 1.5rem;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-color);
    background: var(--card-bg);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* CTA Section */
.refund-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-info {
    margin-top: 2rem;
}

.cta-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

.cta-info i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .refund-hero-title {
        font-size: 2.5rem;
    }
    
    .refund-card-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .refund-hero {
        padding: 150px 0 50px;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }
    
    .refund-hero-title {
        font-size: 2.2rem;
    }
    
    .refund-hero-subtitle {
        font-size: 1rem;
    }
    
    .refund-hero-stats {
        gap: 1.5rem;
    }
    
    .refund-stat {
        min-width: 120px;
        padding: 1rem;
    }
    
    .refund-stat-number {
        font-size: 2rem;
    }
    
    .cost-responsibility {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .refund-section {
        padding: 4rem 0;
    }
    
    .refund-card {
        padding: 2rem;
    }
    
    .refund-card-title {
        font-size: 1.6rem;
    }
    
    .timeline-visual {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-body p {
        padding-left: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .refund-hero-title {
        font-size: 1.8rem;
    }
    
    .refund-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .refund-hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    
    .refund-stat {
        width: 100%;
        max-width: 220px;
    }
    
    .refund-card {
        padding: 1.5rem;
    }
    
    .non-return-item,
    .policy-item,
    .shipping-note {
        /* flex-direction: column; */
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .step-body p {
        padding-left: 0;
    }
    
    .note-actions {
        flex-direction: column;
    }
    
    .note-actions .btn {
        width: 100%;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
}