/* ============================================================
   STATIC / POLICY PAGES — About, Privacy, Terms, Refund, Shipping
   Typography and layout for long-form content
   ============================================================ */

.policy-page-section {
    padding: 60px 0 80px;
}
@media (min-width: 768px) {
    .policy-page-section { padding: 80px 0 100px; }
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.75;
    color: #333;
}

.policy-content h1 {
    font-family: var(--font-heading, 'Roboto', sans-serif);
    font-size: 1.875rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}
@media (min-width: 768px) {
    .policy-content h1 { font-size: 2.25rem; }
}

.policy-content h2 {
    font-family: var(--font-heading, 'Roboto', sans-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin: 2rem 0 0.75rem;
}
@media (min-width: 768px) {
    .policy-content h2 { font-size: 1.5rem; }
}

.policy-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 0.5rem;
}

.policy-content p {
    margin: 0 0 1rem;
    color: #444;
}

.policy-content p em {
    color: #666;
    font-size: 0.9375rem;
}

.policy-content ul,
.policy-content ol {
    margin: 0 0 1rem 1.25rem;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: #0066cc;
    text-decoration: underline;
}
.policy-content a:hover {
    color: #004499;
}

.policy-content strong {
    font-weight: 600;
    color: #222;
}

/* Policy callout / footer note */
.policy-content .policy-footer,
.policy-content .policy-callout {
    margin-top: 2.5rem;
    padding: 1.25rem 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #FF9800;
    border-radius: 4px;
    font-size: 0.9375rem;
    color: #555;
}

/* Button group in policy content (e.g. About page CTAs) */
.policy-content .btn-group-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.policy-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.policy-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.policy-content .btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #000;
}
.policy-content .btn-secondary {
    background: #fff;
    color: #000;
    border: 2px solid #000;
}

/* Social / link blocks inside policy content */
.policy-content .social-links-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.policy-content .whatsapp-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 8px;
    text-align: center;
}
