/* ===== Policy Pages Styles (Shipping, Privacy, Terms) ===== */

/* Policy Section */
.policy-section {
    padding: 80px 0;
    background: var(--white);
    min-height: calc(100vh - 400px);
  }
  
  .policy-container {
    max-width: 850px;
    margin: 0 auto;
  }
  
  .policy-section h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-light);
  }
  
  .policy-content h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 16px;
  }
  
  .policy-content h2:first-of-type {
    margin-top: 0;
  }
  
  .policy-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
  }
  
  .policy-content p strong {
    color: var(--text-dark);
    font-weight: 600;
  }
  
  .policy-content ul {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 0;
  }
  
  .policy-content ol {
    list-style: decimal;
    margin-bottom: 24px;
    padding-left: 24px;
  }
  
  .policy-content li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 12px;
  }
  
  .policy-content li strong {
    color: var(--text-dark);
  }
  
  .policy-list li:before {
    content: "✓";
    display: inline-block;
    width: 20px;
    color: var(--maroon);
    font-weight: bold;
    margin-right: 8px;
  }
  
  /* Policy Boxes */
  .policy-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 32px 0;
  }
  
  .policy-box__item {
    padding: 24px;
    background: linear-gradient(135deg, var(--bg-promo) 0%, #f5dfe2 100%);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
  }
  
  .policy-box__title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 8px;
  }
  
  .policy-box__item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
  }
  
  /* Policy Table */
  .policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  
  .policy-table thead {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
    color: var(--white);
  }
  
  .policy-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
  }
  
  .policy-table td {
    padding: 14px 16px;
    border-top: 1px solid var(--border-light);
    font-size: 15px;
    color: var(--text-muted);
  }
  
  .policy-table tbody tr:hover {
    background: var(--bg-cream);
  }
  
  /* Policy Contact */
  .policy-contact {
    list-style: none;
    padding: 0;
    margin: 24px 0;
  }
  
  .policy-contact li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
    line-height: 1.6;
  }
  
  .policy-contact li:last-child {
    border-bottom: none;
  }
  
  .policy-contact strong {
    color: var(--text-dark);
    font-weight: 600;
  }
  
  .policy-contact a {
    color: var(--maroon);
    font-weight: 600;
  }
  
  .policy-contact a:hover {
    text-decoration: underline;
  }
  
  /* Policy Footer */
  .policy-footer {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 2px solid var(--border-light);
    background: var(--bg-cream);
    padding: 32px;
    border-radius: var(--radius);
  }
  
  .policy-footer p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 8px;
  }
  
  .policy-footer p:last-child {
    margin-bottom: 0;
  }
  
  .policy-footer strong {
    color: var(--text-dark);
    font-weight: 600;
  }
  
  /* Policy CTA */
  .policy-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    text-align: center;
    color: var(--white);
  }
  
  .policy-cta h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
  }
  
  .policy-cta p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
  }
  
  .policy-cta .btn {
    display: inline-block;
  }
  
  .policy-cta .btn--primary {
    background: var(--white);
    color: var(--maroon);
  }
  
  .policy-cta .btn--primary:hover {
    background: var(--bg-cream);
    color: var(--maroon);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .policy-section {
      padding: 60px 0;
    }
  
    .policy-section h1 {
      font-size: 1.8rem;
      margin-bottom: 40px;
    }
  
    .policy-content h2 {
      font-size: 1.3rem;
      margin-top: 32px;
    }
  
    .policy-box {
      gap: 16px;
    }
  
    .policy-box__item {
      padding: 20px;
    }
  
    .policy-table {
      font-size: 14px;
    }
  
    .policy-table th,
    .policy-table td {
      padding: 12px;
    }
  
    .policy-footer {
      padding: 24px;
      margin-top: 40px;
    }
  
    .policy-cta {
      padding: 60px 0;
    }
  
    .policy-cta h2 {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 480px) {
    .policy-section h1 {
      font-size: 1.5rem;
      margin-bottom: 32px;
    }
  
    .policy-content p,
    .policy-content li {
      font-size: 14px;
      line-height: 1.7;
    }
  
    .policy-box {
      grid-template-columns: 1fr;
    }
  
    .policy-table {
      font-size: 13px;
    }
  
    .policy-table th,
    .policy-table td {
      padding: 10px 8px;
    }
  
    .policy-cta {
      padding: 40px 0;
    }
  
    .policy-cta h2 {
      font-size: 1.5rem;
    }
  
    .policy-cta p {
      font-size: 14px;
    }
  }