/* Arina Beauty - Shipping Policy Page Styles */
.arina-shipping-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #ffffff;
}

.arina-shipping-wrapper {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

/* Header Styles */
.arina-shipping-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #B8860B;
}

.arina-shipping-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #2C1810;
    margin: 0 0 10px;
    font-family: 'Playfair Display', serif;
}

.last-updated {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* Section Styles */
.arina-shipping-section {
    margin-bottom: 35px;
    padding: 0 10px;
}

.welcome-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #B8860B;
    margin: 0;
}

/* Headings */
.arina-shipping-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2C1810;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-family: 'Playfair Display', serif;
}

.subsection {
    margin-bottom: 25px;
}

.subsection h3 {
    font-size: 18px;
    font-weight: 600;
    color: #B8860B;
    margin: 0 0 12px;
}

/* Lists */
.subsection ul {
    margin: 0;
    padding-left: 20px;
}

.subsection li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #FEFAF5 0%, #FDF5E6 100%);
    padding: 25px;
    border-radius: 16px;
    margin-top: 30px;
}

.contact-info {
    margin-top: 15px;
}

.contact-question {
    font-size: 16px;
    margin-bottom: 15px;
    color: #2C1810;
}

.contact-phone,
.contact-email,
.contact-returns {
    margin: 10px 0;
}

.contact-phone a,
.contact-email a,
.contact-returns a {
    color: #B8860B;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-phone a:hover,
.contact-email a:hover,
.contact-returns a:hover {
    color: #8B6508;
    text-decoration: underline;
}

/* Footer */
.arina-shipping-footer {
    text-align: center;
    padding-top: 30px;
    margin-top: 20px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #888;
}

.arina-shipping-footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .arina-shipping-container {
        padding: 20px 15px;
    }
    
    .arina-shipping-header h1 {
        font-size: 28px;
    }
    
    .arina-shipping-section h2 {
        font-size: 22px;
    }
    
    .subsection h3 {
        font-size: 16px;
    }
    
    .welcome-text {
        font-size: 14px;
        padding: 15px;
    }
    
    .contact-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .arina-shipping-container {
        padding: 15px 12px;
    }
    
    .arina-shipping-header h1 {
        font-size: 24px;
    }
    
    .arina-shipping-section h2 {
        font-size: 20px;
    }
    
    .subsection ul {
        padding-left: 15px;
    }
    
    .subsection li {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .contact-phone,
    .contact-email,
    .contact-returns {
        font-size: 14px;
        word-break: break-word;
    }
}