/* ============================================
   STATIC PAGES STYLES (Shipping, Returns, Privacy, Terms, Contact)
   ============================================ */

/* Page Header */
.page-header {
    background: var(--navy-deep);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 3px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.page-header p {
    color: var(--gray-400);
    font-size: 1rem;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

/* Content Section */
.content-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--navy-deep);
    margin: 40px 0 16px;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-wrapper ul,
.content-wrapper ol {
    color: var(--gray-600);
    margin: 16px 0 24px 24px;
}

.content-wrapper li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-wrapper a {
    color: var(--blue-primary);
    text-decoration: none;
}

.content-wrapper a:hover {
    text-decoration: underline;
}

/* Info Box */
.info-box {
    background: var(--blue-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 24px 0;
    border-left: 4px solid var(--blue-primary);
}

.info-box p {
    margin: 0;
    color: var(--navy-deep);
}

.info-box.warning {
    background: var(--yellow-light, #fef3c7);
    border-left-color: var(--yellow-accent);
}

/* Table */
.content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.content-wrapper th,
.content-wrapper td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.content-wrapper th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--navy-deep);
}

.content-wrapper td {
    color: var(--gray-600);
}

/* Last Updated */
.last-updated {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

.contact-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    background: var(--blue-light);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--blue-primary);
}

.contact-card h3 {
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.contact-card a {
    color: var(--blue-primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* FAQ Accordion */
.faq-item {
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-deep);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-wrapper {
        padding: 0 16px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
