/*
Theme Name: Original Theme
Theme URI: https://delivery.cbd-library.com/
Description: CBD Library Delivery — Hotel CBD Delivery Service Theme
Version: 1.0.0
Author: CBD Library
Text Domain: cbd-delivery
*/

/* ============================================================
   CSS Variables
============================================================ */
:root {
  --color-black:      #000000;
  --color-white:      #ffffff;
  --color-green:      #1a3d2b;
  --color-green-dark: #0f2a1d;
  --color-cta:        #E86510;
  --color-cta-hover:  #CC550E;
  --color-ink:        #111111;
  --color-muted:      #666666;
  --color-border:     #e0e0e0;
  --color-bg:         #ffffff;
  --color-bg-soft:    #f5f4f0;

  --font-base: 'Noto Sans JP', sans-serif;
  --header-h: 56px;
  --container: 1200px;
}

/* ============================================================
   Reset & Base
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

body {
  font-family: var(--font-base);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   Header — 2-row layout
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

/* Top row: hamburger / logo / CTA */
.header-top {
  border-bottom: 1px solid var(--color-border);
}

.header-top .container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 56px;
  padding: 0 24px;
}

/* Hamburger button */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-self: start;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 1px;
  transition: all 0.25s;
}

/* Logo (center) */
.site-logo {
  justify-self: center;
}

.site-logo a img {
  display: block;
  height: 42px;
  width: auto;
}

/* CTA (right) */
.header-cta {
  justify-self: end;
}

.header-cta a {
  display: inline-block;
  background: var(--color-cta);
  color: var(--color-white);
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s;
}

.header-cta a:hover { background: var(--color-cta-hover); }

/* Navigation row */
.header-nav .container {
  padding: 0 24px;
}

.main-nav > ul {
  display: flex;
  gap: 0;
  justify-content: center;
}

.main-nav a {
  display: block;
  color: rgba(0,0,0,0.6);
  font-size: 12px;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 18px;
  transition: color 0.2s;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  color: var(--color-ink);
  border-bottom-color: var(--color-green);
}

/* ============================================================
   Drawer menu
============================================================ */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  pointer-events: none;
}

.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity 0.25s;
}

.drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: var(--color-black);
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}

.drawer.is-open {
  pointer-events: auto;
}

.drawer.is-open .drawer-overlay {
  opacity: 1;
}

.drawer.is-open .drawer-panel {
  transform: translateX(0);
}

/* Hamburger → ✕ animation */
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer-header {
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.drawer-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}

.drawer-close:hover { color: var(--color-white); }

.drawer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-nav a {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s;
}

.drawer-nav a:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.05);
}

.drawer-cta {
  padding: 24px;
}

.drawer-cta a {
  display: block;
  text-align: center;
  background: var(--color-cta);
  color: var(--color-white);
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}

.drawer-cta a:hover { background: var(--color-cta-hover); }

/* ============================================================
   Footer
============================================================ */
.site-footer { background: #5E673C; }

.footer-main { padding: 64px 0 56px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 12px;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}

.footer-sns { display: flex; gap: 10px; }

.footer-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.footer-sns a:hover {
  border-color: rgba(255,255,255,0.9);
  color: var(--color-white);
}

.footer-group-sites { margin-top: 20px; }

.footer-group-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.footer-group-sites ul { display: flex; flex-direction: column; gap: 5px; }

.footer-group-sites a {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.footer-group-sites a:hover { color: var(--color-white); }

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--color-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom span {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

/* ============================================================
   Hero
============================================================ */
.cbd-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cbd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,17,40,0.55) 0%, rgba(10,17,40,0.20) 100%);
}

.cbd-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 80px 48px;
  color: #fff;
}

.cbd-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.cbd-hero__badge {
  border: 1px solid rgba(255,255,255,0.7);
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  border-radius: 9999px;
  background-color: rgba(255,255,255,0.12);
  white-space: nowrap;
}

.cbd-hero__inner h1 {
  color: #fff !important;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.cbd-hero__inner p {
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.9;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.cbd-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cbd-btn-primary {
  display: inline-block;
  background: var(--color-cta);
  color: #fff;
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.cbd-btn-primary:hover {
  background: var(--color-cta-hover);
  transform: translateY(-1px);
}

.cbd-btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}

.cbd-btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.cbd-hero__h1-sub {
  color: var(--color-cta);
  font-style: italic;
}

.cbd-hero__lead {
  font-size: 18px;
  margin: 24px 0;
}

.cbd-hero__delivery-line {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 16px;
  opacity: 0.8;
}

.regional-page-title {
  font-family: 'Playfair Display', Georgia, serif;
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #1B4D3E;
  line-height: 1.2;
  margin: 32px auto 24px;
  padding: 0 24px;
}

/* ============================================================
   Trust Data
============================================================ */
.trust-data-section {
  background: #f8f7f4;
  padding: 96px 0;
}

.trust-data-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.trust-data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.trust-data-grid--secondary {
  grid-template-columns: 1fr 1fr;
}

.trust-data-card {
  background: #fff;
  border-radius: 4px;
  padding: 36px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.trust-data-card-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-ink);
  margin-bottom: 6px;
}

.trust-data-card-sub {
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 20px;
}

.trust-data-center { text-align: center; }

.trust-data-chart-wrapper,
.trust-data-chart2-wrapper { width: 100%; }

.trust-data-chart-img,
.trust-data-chart2-img { width: 100%; height: auto; border-radius: 2px; }

.trust-data-badge {
  display: inline-block;
  margin-top: 20px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 2px;
}

.trust-data-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-cta);
  margin-bottom: 16px;
}

.trust-data-heading {

  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-ink);
  margin-bottom: 20px;
}

.trust-data-heading-sub {
  display: block;

  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  font-style: normal;
  color: #5E673C;
  margin-top: 6px;
}

.trust-data-body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(0,0,0,0.65);
  margin-bottom: 32px;
}

.trust-data-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.trust-data-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-data-point-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 6px;
}

.trust-data-point-body {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-muted);
}

.trust-data-benefits-title {

  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #5E673C;
  margin-bottom: 16px;
}

.trust-data-benefits-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-muted);
  margin-bottom: 28px;
}

.trust-data-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-data-benefits-list li {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-data-emoji {
  font-size: 20px;
  flex-shrink: 0;
}

/* ============================================================
   Shop
============================================================ */
#shop {
  padding: 96px 0;
  background: var(--color-bg);
}

.shop-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.shop-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.shop-title {

  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #5E673C;
  margin-bottom: 8px;
}

.shop-desc {
  font-size: 15px;
  color: var(--color-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f4f0;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.product-card:hover .product-media img {
  transform: scale(1.03);
}

.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(10,17,40,0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 600 !important;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.5;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
}

.product-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-ink);
}

.product-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-add {
  display: inline-block;
  background: var(--color-cta);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  border-radius: 2px;
  transition: background 0.2s;
}

.btn-add:hover { background: var(--color-cta-hover); }

.link-detail {
  font-size: 11px;
  color: var(--color-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.link-detail:hover { color: var(--color-ink); }

/* ============================================================
   How It Works
============================================================ */
.hiw {
  background: var(--color-white);
  color: var(--color-ink);
  padding: 96px 0;
}

.hiw-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.hiw-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  text-align: center;
  color: #5E673C;
  margin-bottom: 56px;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}

.hiw-step {
  text-align: center;
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-bg-soft);
  position: relative;
}

.hiw-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.hiw-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  background: var(--color-cta);
  color: #fff;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.hiw-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #5E673C;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.hiw-step-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--color-muted);
}

.hiw-footer {
  text-align: center;
  margin-bottom: 48px;
}

.hiw-footline {
  font-size: 14px;
  line-height: 2;
  color: var(--color-muted);
}

.hiw-sage {
  color: #5E673C;
  font-weight: 600 !important;
}

.hiw-footline-strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-ink);
  margin-top: 8px;
}

.hiw-paybox {
  border-top: 1px solid var(--color-border);
  padding-top: 40px;
  text-align: center;
}

.hiw-pay-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-muted);
  margin-bottom: 24px;
}

.hiw-pay-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hiw-pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 8px 16px;
}

.pay-ico {
  height: 24px;
  width: auto;
  display: block;
}

/* ============================================================
   Breadcrumb
============================================================ */
.breadcrumb {
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb-item {
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.5;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  margin: 0 8px;
  color: var(--color-border);
  font-size: 14px;
}

.breadcrumb-item a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumb-item a:hover {
  color: var(--color-green);
}

.breadcrumb-item--current {
  color: var(--color-ink);
  max-width: 420px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============================================================
   Page Template
============================================================ */
.page-main { padding: 96px 0; }
.page-header { margin-bottom: 48px; }
.page-header h1 { font-size: var(--h1-size); color: var(--color-ink); }
.page-body { line-height: 1.8; color: var(--color-ink); }
.page-body p { margin-bottom: 16px; }
.page-body a { color: var(--color-cta); text-decoration: underline; }
.page-body a:hover { color: var(--color-cta-hover); }

/* ============================================================
   Legal Page
============================================================ */

/* ============================================================
   LEGAL PAGE — LP DESIGN
============================================================ */

/* ─ Hero Section ─ */
.legal-hero {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(245,244,240,0.9) 100%);
  padding: 80px 0 60px;
  position: relative;
}

.legal-hero__content {
  text-align: center;
}

.legal-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.legal-hero__badge {
  display: inline-block;
  border: 1px solid var(--color-cta);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-cta);
  border-radius: 9999px;
  background-color: rgba(232, 101, 16, 0.05);
  text-transform: uppercase;
}

.legal-hero__title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-ink);
  margin: 0 0 16px;
}

.legal-hero__subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.legal-cta-primary {
  display: inline-block;
  background: var(--color-cta);
  color: white;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.15s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.legal-cta-primary:hover {
  background: var(--color-cta-hover);
  transform: translateY(-2px);
}

/* ─ Base Section Styling ─ */
.legal-section {
  padding: 80px 0;
}

.legal-section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 16px;
  line-height: 1.3;
}

.legal-section__subtitle {
  font-size: 16px;
  color: var(--color-muted);
  margin-bottom: 32px;
  font-weight: 500;
}

.legal-section p {
  font-size: 16px;
  color: var(--color-ink);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ─ Reassurance Section (2-column) ─ */
.legal-reassurance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.legal-reassurance__text h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 24px;
  line-height: 1.3;
}

.legal-reassurance__highlight {
  background: rgba(26, 61, 43, 0.06);
  border-left: 4px solid var(--color-green);
  padding: 20px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--color-ink);
}

.legal-reassurance__highlight strong {
  color: var(--color-green);
  font-weight: 700;
}

.legal-source-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--color-cta);
  text-decoration: none;
  font-weight: 600 !important;
  font-size: 14px;
  transition: color 0.15s;
}

.legal-source-link:hover {
  color: var(--color-cta-hover);
  text-decoration: underline;
}

.legal-reassurance__image {
  margin: 0;
}

.legal-reassurance__image img {
  width: 100%;
  border-radius: 4px;
}

/* ─ Warning Section (Grid Cards) ─ */
.legal-warning-header {
  text-align: center;
  margin-bottom: 48px;
}

.legal-warning-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #EF4444;
  margin-bottom: 12px;
}

.legal-warning-subtitle {
  font-size: 16px;
  color: var(--color-muted);
  font-weight: 500;
}

.legal-warning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.legal-warning-card {
  background: white;
  border: 2px solid #EF4444;
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
}

.legal-warning-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 12px;
  line-height: 1.4;
}

.legal-warning-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}

.legal-warning-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.legal-warning-stamp {
  background: #EF4444;
  color: white;
  padding: 40px 32px;
  border-radius: 4px;
  text-align: center;
}

.legal-warning-stamp-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* ─ Guarantee Section (Grid Cards) ─ */
.legal-guarantee-header {
  text-align: center;
  margin-bottom: 48px;
}

.legal-guarantee-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 16px;
}

.legal-guarantee-header p {
  font-size: 16px;
  color: var(--color-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.legal-guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.legal-guarantee-card {
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
}

.legal-guarantee-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 12px;
  line-height: 1.4;
}

.legal-guarantee-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}

.legal-guarantee-icon {
  font-size: 28px;
  color: var(--color-green);
  margin-bottom: 16px;
  display: block;
}

.legal-section__cta {
  text-align: center;
  margin-top: 40px;
}

/* ─ How-To Section (Numbered Cards) ─ */
.legal-howto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.legal-howto-card {
  position: relative;
  padding-top: 48px;
}

.legal-howto-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--color-cta);
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 0;
}

.legal-howto-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.legal-howto-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ─ Travelers Section ─ */
.legal-travelers-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.legal-travelers-card {
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 32px;
}

.legal-travelers-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 12px;
}

.legal-travelers-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ─ Support Section ─ */
.legal-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.legal-support-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 32px;
}

.legal-support-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 12px;
}

.legal-support-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-support-link {
  display: inline-block;
  color: var(--color-cta);
  text-decoration: none;
  font-weight: 600 !important;
  font-size: 14px;
  transition: color 0.15s;
}

.legal-support-link:hover {
  color: var(--color-cta-hover);
  text-decoration: underline;
}

.legal-section--support .container > h2 {
  text-align: center;
  margin-bottom: 12px;
}

.legal-section--support .container > p {
  text-align: center;
  margin-bottom: 48px;
}

/* ─ Final CTA ─ */
.legal-cta-final {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.legal-cta-subtext {
  font-size: 14px;
  color: var(--color-muted);
  margin-top: 16px;
  font-style: italic;
}
/* ============================================================
   Responsive — Tablet (≤ 960px)
============================================================ */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-col--brand { grid-column: 1 / -1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-data-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-data-grid--secondary { grid-template-columns: 1fr; }
  .hiw-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   Responsive — Mobile (≤ 640px)
============================================================ */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .header-top .container { padding: 0 16px; }
  .header-cta a { font-size: 10px; padding: 6px 10px; letter-spacing: 0; }
  .header-nav { display: none; }
  .footer-main { padding: 48px 0 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-col--brand { grid-column: auto; }

  .cbd-hero { min-height: 80vh; background-attachment: scroll; }
  .cbd-hero__inner { padding: 60px 20px; }
  .cbd-hero__actions { flex-direction: column; }
  .cbd-btn-primary, .cbd-btn-outline { width: 100%; text-align: center; }

  .trust-data-section { padding: 56px 0; }
  .trust-data-inner { gap: 48px; padding: 0 16px; }

  .product-grid { grid-template-columns: 1fr; }
  #shop { padding: 56px 0; }
  .shop-inner { padding: 0 16px; }

  .hiw { padding: 56px 0; }
  .hiw-inner { padding: 0 16px; }
  .hiw-pay-row { gap: 12px; }

  .legal-hero { padding: 48px 0 0; }
  .legal-hero__content { padding-bottom: 48px; }
  .legal-hero__badge { font-size: 11px; }
  .legal-hero__title { font-size: clamp(28px, 4vw, 40px); }

  .legal-section { padding: 56px 0; }
  .legal-section__title { font-size: clamp(20px, 3vw, 28px); }

  .legal-card--feature {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }

  .legal-warning {
    padding: 32px;
  }

  .legal-warning__stamp {
    padding: 24px;
  }

  .legal-warning__stamp-emphasis {
    font-size: 24px;
  }

  /* Legal Page LP Responsive */
  .legal-hero__badges {
    flex-direction: column;
    gap: 8px;
  }

  .legal-hero__title {
    font-size: 28px;
  }

  .legal-reassurance {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .legal-warning-grid,
  .legal-guarantee-grid,
  .legal-howto-grid,
  .legal-travelers-content,
  .legal-support-grid {
    grid-template-columns: 1fr;
  }

  .legal-section {
    padding: 56px 0;
  }
}

/* ============================================================
   Shop Section
============================================================ */
#shop {
  padding: 96px 0;
  background: #F3F4F6;
}

.shop-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.shop-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

#shop {
  padding: 96px 0;
  background: #F3F4F6;
}

#shop .shop-head {
  margin-bottom: 48px;
}

.partners-section {
  padding: 96px 0;
  background: #F9FAFB;
}

#partners .shop-head {
  margin-bottom: 32px;
}

.shop-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #5E673C;
  margin: 0 0 8px;
}

.shop-desc {
  font-size: 15px;
  color: var(--color-muted);
  margin: 0;
}

.partners-subheading {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-ink);
  margin: 8px 0 16px;
}

.partners-cta {
  display: inline-block;
  color: var(--color-cta);
  border-bottom: 1px solid var(--color-cta);
  padding-bottom: 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}

.partners-cta:hover {
  opacity: 0.8;
}

.partners-delivery-area {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.partners-delivery-label {
  font-size: 12px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 16px;
}

.partners-delivery-text {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.product-media {
  position: relative;
}

.product-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(10,17,40,0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 600 !important;
  padding: 4px 10px;
  border-radius: 2px;
}

.product-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-ink);
  margin: 0 0 8px;
  line-height: 1.4;
}

.product-desc {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.product-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-ink);
}

.product-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-add {
  background: var(--color-cta);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}

.btn-add:hover {
  opacity: .85;
}

.link-detail {
  color: var(--color-green);
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
}

@media (max-width: 768px) {
  #shop { padding: 64px 0; }
  .product-grid { grid-template-columns: 1fr; }
}
