/* Styling for legal pages like Privacy, Returns, etc. */
.policy-page {
    max-width: 56rem; /* 896px */
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 1rem;
}

.policy-page h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem; /* 36px */
    font-weight: 700;
    color: var(--deep-walnut);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--soft-gold);
    padding-bottom: 0.5rem;
}

.policy-page h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    color: var(--warm-bronze);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-page p,
.policy-page li {
    font-size: 1rem; /* 16px */
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
}

.policy-page ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.policy-page a {
    color: var(--warm-bronze);
    text-decoration: underline;
}

.policy-page a:hover {
    color: var(--soft-gold);
}

/* ===== ADDED RESPONSIVE HELPERS ===== */
.responsive-img { max-width: 100%; height: auto; display: block; }
.container { max-max-width: 100%; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; box-sizing: border-box; }

/* Convert very large fixed widths to max-width */
body * { min-width: 0; }

/* Common breakpoints */
@media (max-width: 1024px) {
  .grid-cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .grid-cols-3 { grid-template-columns: 1fr; }
  .flex-row { flex-direction: column; }
  .hidden-md-up { display: none !important; }
}
/* ===== END ADDED RESPONSIVE HELPERS ===== */
