/* Refund / Cancellation Policy Page Styles - Professional Art Studio Theme */

/* Main container with max-width for better readability */
.refund-section {
    padding: 20px 20px;
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    margin-top: 20px;
    margin-bottom: 40px;
}

.refund-content {
    display: block;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

/* Policy Sections */
.policy-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.policy-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.policy-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    margin-top: 25px;
}

.policy-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #5a6c7d;
    padding: 12px 0 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-list li::before {
    content: '•';
    color: #0077be;
    font-weight: bold;
    margin-right: 10px;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #e9ecef;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-info strong {
    color: #0077be;
    font-weight: 600;
}

/* Typography - Professional and readable */
.page-heading {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 2px;
}

/* Coming Soon Content */
.coming-soon-content {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.05) 0%, rgba(245, 87, 108, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(240, 147, 251, 0.1);
    margin-top: 40px;
}

.coming-soon-icon {
    font-size: 4rem;
    color: #f093fb;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-info strong {
    color: #f093fb;
    font-weight: 600;
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .refund-section {
        padding: 20px 15px;
        margin-top: 15px;
    }
    
    .policy-section {
        padding: 30px;
        margin-bottom: 20px;
    }
    
    .policy-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .policy-subtitle {
        font-size: 1.3rem;
        margin-top: 20px;
    }
    
    .policy-description {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .policy-list li {
        padding: 10px 0 10px 15px;
        font-size: 0.95rem;
    }
    
    .contact-info {
        padding: 20px;
        margin-top: 30px;
    }
    
    .page-heading {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    /* Mobile Navigation Grid */
    .navbar {
        position: relative;
        width: 100%;
    }
    
    .navbar .container {
        display: grid;
        grid-template-columns: 56px 1fr auto;
        grid-template-rows: auto auto;
        align-items: center;
        padding: 10px 12px;
        row-gap: 25px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hamburger {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        display: flex;
        position: static !important;
        margin: 0;
        z-index: 1101;
    }
    
    .navbar-icons {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: nowrap;
        position: static !important;
        margin: 0;
        padding: 0;
        z-index: 1101;
    }
    
    .Logo {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: center;
        margin: 0;
        padding: 0;
        text-align: center;
        width: auto;
        max-width: 360px;
        box-sizing: border-box;
    }
    
    .Logo .main_logo {
        width: 100% !important;
        max-width: 360px !important;
        max-height: 70px;
        display: block;
        margin: 0 auto !important;
        object-fit: contain;
    }

@media (max-width: 480px) {
    .refund-section {
        padding: 10px 10px;
    }
    
    .policy-section {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .policy-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .policy-subtitle {
        font-size: 1.2rem;
        margin-top: 15px;
    }
    
    .policy-description {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .policy-list li {
        padding: 8px 0 8px 12px;
        font-size: 0.9rem;
    }
    
    .contact-info {
        padding: 15px;
        margin-top: 20px;
    }
    
    .page-heading {
        font-size: 1.8rem;
    }
    
    /* Mobile Navigation Grid */
    .navbar .container {
        padding: 8px 10px;
        row-gap: 20px;
    }
    
    .Logo .main_logo {
        max-width: 280px !important;
        max-height: 60px;
    }
}
