/* ============================================================
   POLICY PAGES — PROFESSIONAL 2-COLUMN LAYOUT
   (Terms, Privacy, Shipping, Returns)
   Appended — does not override any existing styles.
   ============================================================ */

/* ---------- Policy Layout ---------- */
.policy-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
  padding: 20px 0;
}

/* ---------- Sidebar TOC ---------- */
.policy-toc {
  position: sticky;
  top: 140px;
  background: linear-gradient(135deg, #FAF8F2 0%, #F5F1E6 100%);
  border: 1px solid var(--pk-gray-200);
  border-left: 3px solid var(--pk-gold);
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.policy-toc h3 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pk-gold);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.policy-toc ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.policy-toc a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--pk-gray-600);
  display: block;
  padding: 8px 12px;
  border-left: 2px solid transparent;
  margin-left: -2px;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.policy-toc a:hover {
  color: var(--pk-gold);
  border-left-color: var(--pk-gold);
  padding-left: 16px;
  background: rgba(201, 162, 39, 0.04);
}

/* ---------- Policy Content ---------- */
.policy-layout .policy-content {
  max-width: 100%;
  margin: 0;
}

.policy-layout .policy-content section {
  scroll-margin-top: 140px;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--pk-gray-200);
}

.policy-layout .policy-content section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.policy-layout .policy-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 500;
  color: var(--pk-black);
  margin: 0 0 20px;
  padding: 0 0 0 20px;
  border: none;
  letter-spacing: 0.01em;
  line-height: 1.25;
  position: relative;
}

.policy-layout .policy-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 3px;
  height: 24px;
  background: var(--pk-gold);
}

.policy-layout .policy-content p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--pk-gray-600);
  margin-bottom: 18px;
}

.policy-layout .policy-content p strong {
  color: var(--pk-black);
  font-weight: 500;
}

.policy-layout .policy-content ul {
  margin: 18px 0 22px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-layout .policy-content ul li {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--pk-gray-600);
  padding-left: 26px;
  position: relative;
}

.policy-layout .policy-content ul li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--pk-gold);
  border-radius: 50%;
}

.policy-layout .policy-content ul li strong {
  color: var(--pk-black);
  font-weight: 500;
}

.policy-layout .policy-content a {
  color: var(--pk-gold);
  font-weight: 500;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
  transition: all 0.25s ease;
  padding-bottom: 1px;
}

.policy-layout .policy-content a:hover {
  color: var(--pk-gold-dark);
  border-bottom-color: var(--pk-gold-dark);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .policy-toc {
    position: static;
    padding: 24px 22px;
  }

  .policy-toc ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 16px;
  }
}

@media (max-width: 768px) {
  .policy-layout { padding: 10px 0; }
  .policy-toc { padding: 22px 18px; }
  .policy-toc ul { grid-template-columns: 1fr; }
  .policy-toc a {
    font-size: 0.78rem;
    padding: 6px 10px;
  }

  .policy-layout .policy-content section {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .policy-layout .policy-content h2 {
    font-size: 1.25rem;
    padding-left: 16px;
    margin-bottom: 16px;
  }

  .policy-layout .policy-content h2::before {
    top: 8px;
    height: 20px;
  }

  .policy-layout .policy-content p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .policy-layout .policy-content ul li {
    font-size: 0.88rem;
    padding-left: 22px;
  }

  .policy-layout .policy-content ul li::before {
    left: 6px;
    top: 11px;
    width: 5px;
    height: 5px;
  }
}

@media (max-width: 480px) {
  .policy-layout .policy-content h2 { font-size: 1.1rem; }
  .policy-layout .policy-content p,
  .policy-layout .policy-content ul li { font-size: 0.86rem; }
  .policy-layout .policy-content section { scroll-margin-top: 100px; }
}