/* NJ Coastal Views — 2026 Design */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0f1f3d;
  --navy-mid: #1a2f55;
  --navy-light: #253f70;
  --gold: #d4a017;
  --gold-bright: #f0c040;
  --cream: #f7f4ef;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-muted: #5a6070;
  --border: #e0dcd5;
  --card-bg: #ffffff;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --font-sans: system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-serif: 'Palatino Linotype', Palatino, Georgia, serif;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

/* ── Navigation ── */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.notice {
  background: var(--navy-mid);
  color: rgba(255,255,255,0.65);
  text-align: center;
  font-size: 11px;
  padding: 5px 16px;
  font-style: italic;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 40px;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
}
nav ul li { position: relative; }
nav ul li a {
  display: block;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  padding: 16px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: color 0.18s, background 0.18s;
  border-radius: 4px;
}
nav ul li a:hover,
nav ul li a.active {
  background: rgba(255,255,255,0.07);
  color: var(--gold-bright);
}

/* ── Hero (home + LBI only) ── */
.hero {
  position: relative;
  overflow: hidden;
  height: 500px;
  background: var(--navy);
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.88;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,20,45,0.08) 0%, rgba(10,20,45,0.38) 100%);
  pointer-events: none;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  z-index: 2;
}
.hero-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 6.5vw, 78px);
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

/* ── Page header bar (interior pages — no hero) ── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 32px 24px 28px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 4vw, 42px);
  color: #fff;
  font-style: italic;
  letter-spacing: -0.3px;
}
.page-header .breadcrumb {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.page-header .breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}
.page-header .breadcrumb a:hover { text-decoration: underline; }

/* ── Layout ── */
main { max-width: 1140px; margin: 0 auto; padding: 36px 20px 60px; }

/* ── Home page ── */
.home-intro {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 40px;
}
.home-intro h2 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: clamp(22px, 3.5vw, 32px);
  margin-bottom: 14px;
  font-style: italic;
}
.home-intro p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 12px;
  color: #3a3a3a;
}
.home-intro .note {
  background: #fffbea;
  border: 1px solid #f0d060;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  margin: 18px 0;
  text-align: left;
  color: #4a3800;
}
.cta-btn {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-bright);
  padding: 14px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 16px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: var(--shadow);
}
.cta-btn:hover { background: var(--navy-light); transform: translateY(-1px); }

/* Slideshow */
.example-pair {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 32px auto;
  max-width: 960px;
}
.example-pair figure {
  flex: 1;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.example-pair figure img {
  width: 100%;
  display: block;
}
.example-pair figcaption {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  padding: 8px 0 10px;
  font-style: italic;
}
@media (max-width: 640px) {
  .example-pair { flex-direction: column; }
}

/* ── Town menu page ── */
.county-section { margin-bottom: 28px; }
.county-section h3 {
  background: var(--navy);
  color: var(--gold);
  padding: 11px 18px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: var(--radius) var(--radius) 0 0;
  font-weight: 700;
}
.town-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  background: var(--card-bg);
}
.town-grid a {
  background: var(--card-bg);
  display: block;
  padding: 11px 16px;
  text-decoration: none;
  color: var(--navy);
  font-size: 14px;
  text-align: center;
  transition: background 0.13s, color 0.13s;
  border-left: 3px solid transparent;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.town-grid a:hover {
  background: #eef3ff;
  color: #1145cc;
  border-left-color: #1145cc;
}

/* ── Town detail page ── */
.town-page { }
.town-page .sample-note {
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 24px;
}
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}
.image-gallery figure {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.image-gallery figure:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.image-gallery figure img { width: 100%; height: 280px; object-fit: cover; display: block; }
.image-gallery figure figcaption {
  text-align: center;
  padding: 9px;
  font-weight: 700;
  color: var(--navy);
  font-size: 13px;
  background: #f2f5ff;
  letter-spacing: 0.5px;
}
.gallery-item {
  display: flex;
  flex-direction: column;
}
.gallery-item figure {
  flex: 1;
}
.gallery-order-btn {
  display: block;
  text-align: center;
  margin-top: 8px;
  padding: 7px 12px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.15s;
}
.gallery-order-btn:hover { background: var(--gold-bright); }

/* ── Coastal history card ── */
.history-card {
  background: linear-gradient(135deg, #0f1f3d 0%, #1a2f55 100%);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.90);
  box-shadow: var(--shadow);
}
.history-card .history-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 14px;
}
.history-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.history-card p {
  font-size: 14px;
  line-height: 1.80;
  color: rgba(255,255,255,0.82);
  margin-bottom: 10px;
}
.history-card p:last-child { margin-bottom: 0; }
.history-card .storm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.history-card .storm-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.history-card .storm-item .storm-year {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.history-card .storm-item p { font-size: 13px; color: rgba(255,255,255,0.80); margin: 0; }

/* ── Order section ── */
.order-section {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  max-width: 640px;
  margin: 0 auto 36px;
  box-shadow: var(--shadow-sm);
}
.order-section h3 {
  color: var(--navy);
  margin-bottom: 18px;
  font-size: 22px;
  font-family: var(--font-serif);
  font-style: italic;
  text-align: center;
}
.order-group {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.order-group--photo {
  border-color: var(--navy-light);
}
.order-group-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #edf0f7;
  padding: 11px 16px;
  flex-wrap: wrap;
}
.order-group--photo .order-group-header {
  background: #dce5f5;
}
.order-group-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  flex: 1;
}
.order-group-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: var(--navy-light);
  color: #fff;
  padding: 2px 8px;
  border-radius: 40px;
}
.order-group-price {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: auto;
}
.order-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.order-row--set {
  background: #f8faff;
  font-weight: 600;
}
.order-row-label {
  flex: 1;
  font-size: 14px;
  color: var(--text);
}
.order-row-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  min-width: 44px;
  text-align: right;
}
.cart-btn {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.cart-btn:hover { background: var(--navy-light); }
.order-section .no-order { font-size: 14px; color: var(--text-muted); text-align: center; margin-top: 8px; }
.order-sizes-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
  text-align: center;
}
.order-year-card {
  border: 1.5px solid var(--navy-light);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  scroll-margin-top: 80px;
}
.order-year-title {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  letter-spacing: 0.5px;
}

/* ── Photo caption (LBI page) ── */
.photo-caption {
  background: var(--navy);
  color: rgba(220,230,255,0.9);
  font-size: 13.5px;
  font-style: italic;
  line-height: 1.75;
  padding: 14px 24px;
  text-align: center;
  margin-bottom: 28px;
  border-bottom: 3px solid var(--gold);
}
.photo-caption strong {
  color: var(--gold-bright);
  font-style: normal;
}

/* ── LBI story ── */
.lbi-story {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  line-height: 1.85;
  font-size: 15px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.lbi-story h2 {
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: 14px;
  font-size: 24px;
  font-style: italic;
}
.lbi-story h3 {
  color: var(--navy-light);
  margin: 20px 0 8px;
  font-size: 17px;
}
.lbi-story p {
  margin-bottom: 14px;
}

/* ── Contact page ── */
.contact-box {
  background: var(--card-bg);
  max-width: 620px;
  margin: 0 auto;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow);
}
.contact-box h2 {
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: 14px;
  font-size: 28px;
  font-style: italic;
}
.contact-box p { font-size: 15px; line-height: 1.75; margin-bottom: 16px; color: #444; }
.contact-box a.email-link {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-bright);
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  margin: 10px 0;
  transition: background 0.2s, transform 0.15s;
  box-shadow: var(--shadow);
}
.contact-box a.email-link:hover { background: var(--navy-light); transform: translateY(-1px); }
.contact-box .phone {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 14px 0;
  letter-spacing: 0.5px;
}
.contact-box hr { margin: 24px 0; border: none; border-top: 1px solid var(--border); }

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(3px);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.7);
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 24px;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  z-index: 10000;
  font-weight: 300;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 52px;
  line-height: 1;
  padding: 0 18px;
  cursor: pointer;
  z-index: 10000;
  border-radius: var(--radius);
  transition: background 0.15s;
  font-weight: 200;
  height: 72px;
  display: flex;
  align-items: center;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.28); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-caption {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  letter-spacing: 0.08em;
  font-style: italic;
  pointer-events: none;
}

/* ── Footer ── */
footer {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 28px 20px;
  margin-top: 60px;
}
footer .tagline {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
footer .copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ── Cart badge in nav ── */
.cart-badge {
  display: inline-block;
  background: #d93025;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border-radius: 40px;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  padding: 0 5px;
  margin-left: 4px;
  vertical-align: middle;
  letter-spacing: 0;
}

/* ── Cart button added state ── */
.cart-btn--added {
  background: #2a7a2a !important;
  color: #fff;
}

/* ── Cart page ── */
.cart-page {
  max-width: 720px;
  margin: 0 auto;
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 17px;
}
.cart-empty .cta-btn { margin-top: 24px; }
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cart-table thead {
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.cart-table thead th { padding: 12px 16px; text-align: left; font-weight: 700; }
.cart-table tbody tr { border-bottom: 1px solid var(--border); }
.cart-table tbody tr:last-child { border-bottom: none; }
.cart-table tbody tr:hover { background: #f8faff; }
.cart-item-label { padding: 12px 16px; font-size: 14px; color: var(--text); }
.cart-item-price { padding: 12px 16px; font-weight: 700; color: var(--navy); white-space: nowrap; }
.cart-table td:last-child { padding: 8px 16px; }
.cart-remove-btn {
  background: none;
  border: 1px solid #ccc;
  color: #888;
  border-radius: var(--radius);
  padding: 4px 10px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cart-remove-btn:hover { background: #fee; color: #c00; border-color: #c00; }

.cart-totals {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.cart-totals-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.cart-totals-row:last-child { border-bottom: none; }
.cart-totals-row span:first-child { flex: 1; color: var(--text-muted); }
.cart-zip-row label { flex: 1; color: var(--text-muted); font-size: 14px; }
.cart-zip-input {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 10px;
  font-size: 14px;
  width: 110px;
  outline: none;
  transition: border-color 0.15s;
}
.cart-zip-input:focus { border-color: var(--navy); }
.cart-total-row { font-size: 18px; font-weight: 700; padding-top: 12px !important; }
.cart-total-row span:first-child { color: var(--text); }
#cart-total { color: var(--navy); font-size: 20px; }

.cart-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cart-clear-btn {
  background: none;
  border: 1px solid #ccc;
  color: #888;
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cart-clear-btn:hover { background: #fee; color: #c00; border-color: #c00; }
.cart-checkout-btn {
  background: var(--navy);
  color: var(--gold-bright);
  border: none;
  border-radius: 40px;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.18s, transform 0.15s;
  box-shadow: var(--shadow);
}
.cart-checkout-btn:hover { background: var(--navy-light); transform: translateY(-1px); }
.cart-shipping-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 8px;
}
.cart-view-link {
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
}
.cart-view-link a { color: var(--navy); font-weight: 600; }
.cart-view-link a:hover { text-decoration: underline; }

/* PayPal button area */
.paypal-btn-wrap {
  max-width: 400px;
  margin: 1.5rem auto 0;
}
.paypal-error {
  text-align: center;
  color: #c00;
  font-size: 14px;
  margin-top: 10px;
  padding: 10px;
  background: #fff0f0;
  border: 1px solid #fbb;
  border-radius: 6px;
}

/* Order success screen */
.cart-success {
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 540px;
  margin: 0 auto;
}
.cart-success-icon {
  width: 72px;
  height: 72px;
  background: #2e7d32;
  color: #fff;
  border-radius: 50%;
  font-size: 2.5rem;
  line-height: 72px;
  margin: 0 auto 1.2rem;
}
.cart-success h2 {
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.cart-success p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-size: 15px;
}

.qty-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}
.qty-input {
  width: 54px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 5px 6px;
  font-size: 13px;
  text-align: center;
  outline: none;
  transition: border-color 0.15s;
}
.qty-input:focus { border-color: var(--navy); }

.cart-col-qty {
  text-align: center;
  padding: 12px 10px;
  color: var(--text-muted);
  font-size: 14px;
  white-space: nowrap;
}
.cart-unit-price {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}

/* ── Mobile nav hamburger ── */
.nav-top-mobile { display: none !important; }
.nav-home-mobile {
  color: rgba(255,255,255,0.88) !important;
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 14px 0;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: rgba(255,255,255,0.88);
  font-size: 24px;
  padding: 14px 4px;
  cursor: pointer;
  line-height: 1;
}
.nav-mobile-right {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-cart-mobile-link {
  color: rgba(255,255,255,0.88) !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  padding: 10px 8px;
  position: relative;
}
.nav-cart-mobile-link .cart-badge {
  margin-left: 2px;
  font-size: 9px;
  min-width: 14px;
  height: 14px;
  line-height: 14px;
  padding: 0 3px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-top-mobile {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  .hamburger { display: block; }
  nav { position: relative; }
  nav ul {
    display: none !important;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--navy);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    z-index: 200;
    gap: 0;
    padding: 0;
  }
  nav.nav-open ul { display: flex !important; }
  nav ul li { width: 100%; }
  nav ul li a {
    padding: 14px 20px;
    font-size: 12px;
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-radius: 0;
  }
  .hero { height: 280px; }
  .image-gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .history-card { padding: 20px 18px; }
  .order-section { padding: 22px 18px; }
  main { padding: 24px 14px 48px; }
}
