/* ===== SUBPAGE STYLES ===== */
/* Shared layout for About, Shipping, Privacy, Terms pages */

.subpage-body {
    background-color: #050505;
    color: #F0F0F0;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Back Navigation */
.subpage-back {
    position: fixed;
    top: 28px;
    left: 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #A0A0A0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.subpage-back:hover {
    color: #D4AF37;
}

.subpage-back svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.subpage-back:hover svg {
    transform: translateX(-4px);
}

/* Main Content */
.subpage-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 140px 40px 100px;
}

/* Page Title */
.subpage-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #D4AF37;
    margin-bottom: 12px;
    line-height: 1.1;
}

.subpage-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, #D4AF37, transparent);
    margin-bottom: 50px;
}

/* Content Text */
.subpage-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #D4AF37;
    margin: 48px 0 16px;
}

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

.subpage-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #cfc09f;
    margin: 32px 0 12px;
}

.subpage-content p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: #A0A0A0;
    margin: 0 0 18px;
    max-width: none;
}

.subpage-content p.lead {
    font-size: 1.1rem;
    color: #c0c0c0;
    line-height: 2;
}

.subpage-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.subpage-content ul li {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #A0A0A0;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.subpage-content ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #D4AF37;
}

.subpage-content .highlight-box {
    border-left: 2px solid #D4AF37;
    padding: 20px 24px;
    margin: 32px 0;
    background: rgba(212, 175, 55, 0.03);
}

.subpage-content .highlight-box p {
    color: #c0c0c0;
    margin: 0;
}

/* Footer Bar */
.subpage-footer {
    text-align: center;
    padding: 40px;
    font-size: 0.75rem;
    color: #555;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}

/* Responsive */
@media (max-width: 600px) {
    .subpage-container {
        padding: 120px 24px 60px;
    }

    .subpage-back {
        left: 20px;
        top: 20px;
    }
}