:root {
  --color-primary: #0d2140;
  --color-primary-light: #1b3a6b;
  --color-primary-lighter: #2c4a7c;
  --color-accent: #c9a86a;
  --color-accent-light: #e2cea0;
  --color-bg: #f8f6f2;
  --color-surface: #ffffff;
  --color-text: #17203a;
  --color-text-muted: #5f6a80;
  --color-border: #e6e2d9;
  --shadow-sm: 0 1px 3px rgba(13, 33, 64, 0.07);
  --shadow-md: 0 14px 32px rgba(13, 33, 64, 0.14);
  --radius: 4px;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: var(--color-primary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(201, 168, 106, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.logo-mark { height: 68px; width: auto; flex-shrink: 0; }

.logo-text {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 27px;
  letter-spacing: 0.4px;
}

.main-nav {
  display: flex;
  gap: 40px;
}

.nav-link {
  color: #dbe3f2;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  border-bottom-color: var(--color-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cart-toggle {
  position: relative;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s ease;
}
.cart-toggle:hover { color: var(--color-accent-light); }
.cart-toggle svg { width: 24px; height: 24px; }

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cartBadgePop .3s ease;
}
.cart-badge[hidden] {
  display: none;
}

@keyframes cartBadgePop {
  0% { transform: scale(0.4); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

/* Views */
.view { padding: 40px 0 64px; animation: viewFadeIn .5s ease; }
.view-catalog { padding-top: 0; }

@keyframes viewFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero */
.hero {
  position: relative;
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  aspect-ratio: 2200 / 886;
  overflow: hidden;
  background: var(--color-primary);
  margin-bottom: 64px;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .6s ease;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 20, 39, 0);
  transition: background .3s ease;
}

.hero:hover .hero-media img { transform: scale(1.03); }
.hero:hover .hero-media::after { background: rgba(9, 20, 39, 0.12); }

.view-heading { margin-bottom: 32px; text-align: center; }

.view-heading h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 38px;
  color: var(--color-primary);
  margin: 0 0 10px;
}

.view-subtitle {
  color: var(--color-text-muted);
  font-size: 16px;
  margin: 0;
}

/* Category filters */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all .2s;
}

.filter-btn:hover { border-color: var(--color-primary-lighter); color: var(--color-primary); }

.filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-light);
}

.product-card .thumb-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  background: var(--color-primary-light);
}

.product-card .thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .5s ease, transform .6s ease;
}

.product-card:hover .thumb {
  transform: scale(1.05);
}

.product-card .thumb-secondary {
  opacity: 0;
}

/* Keeps the card itself clickable through the hover video layer. */
.product-card .thumb-video {
  pointer-events: none;
  background: var(--color-primary);
}

.product-card:hover .thumb-primary {
  opacity: 0;
}

.product-card:hover .thumb-secondary {
  opacity: 1;
}

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

.product-card .card-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--color-accent);
  font-weight: 500;
}

.product-card .card-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.35;
  color: var(--color-primary);
  margin: 0;
}

.product-card .card-price {
  margin-top: auto;
  padding-top: 4px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--color-text);
}

.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-primary);
  width: fit-content;
}

/* Product detail */
.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--color-primary-lighter);
  font-size: 14px;
}
.back-link:hover { color: var(--color-primary); }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-detail .detail-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.detail-info .card-category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  font-weight: 500;
}

.detail-info h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-primary);
  font-size: 34px;
  line-height: 1.25;
  margin: 12px 0 10px;
}

.detail-price {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 4px 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-accent-light);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}

.spec-table tr { border-bottom: 1px solid var(--color-border); }
.spec-table td { padding: 14px 0; font-size: 15px; }
.spec-table td:first-child {
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.2px;
  width: 40%;
}

.detail-description {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
}

.recommendations { margin-top: 88px; }
.recommendations h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-primary);
  font-size: 26px;
  text-align: center;
  margin-bottom: 28px;
}

/* Locations */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.location-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-light);
}

.location-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-primary-light);
}

.location-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.location-card:hover .location-media img { transform: scale(1.04); }

.location-body {
  padding: 24px 26px 28px;
  text-align: center;
}

.location-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--color-primary);
  margin: 0 0 6px;
}

.location-type {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--color-accent);
  font-weight: 500;
  margin: 0 0 14px;
}

.location-address {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-muted);
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

/* Prose (About / Delivery) */
.prose {
  max-width: 760px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 48px 56px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.prose h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.2px;
  color: var(--color-primary);
  margin-top: 36px;
}
.prose h3:first-child { margin-top: 0; }
.prose p { color: var(--color-text); font-weight: 300; line-height: 1.8; }
.prose em { color: var(--color-text-muted); }
.prose ul { padding-left: 0; list-style: none; }
.prose li { margin-bottom: 16px; padding-left: 24px; position: relative; font-weight: 300; line-height: 1.75; }
.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}
.prose li strong { color: var(--color-primary); font-weight: 600; }

.tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(21px, 2.6vw, 27px);
  color: var(--color-primary);
  text-align: center;
  margin: 0 0 44px;
  padding-bottom: 28px;
  position: relative;
}
.tagline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 2px;
  background: var(--color-accent);
}

/* Product image gallery */
.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.gallery-thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: opacity .2s, border-color .2s;
}
.gallery-thumbs img:hover { opacity: 0.9; }
.gallery-thumbs img.active {
  opacity: 1;
  border-color: var(--color-accent);
}

.thumb-item {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.thumb-play-badge {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(9, 20, 39, 0.65);
  pointer-events: none;
}
.thumb-play-badge::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
}

.detail-media { line-height: 0; }
video.detail-image {
  background: var(--color-primary);
}

/* Footer */
.site-footer {
  background: var(--color-primary);
  color: #b9c4dc;
  border-top: 1px solid rgba(201, 168, 106, 0.35);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 64px 24px 36px;
  text-align: center;
}

.footer-logo-mark {
  height: 60px;
  width: auto;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: #dbe3f2;
  max-width: 420px;
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 32px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.footer-nav a { color: #b9c4dc; transition: color .2s; }
.footer-nav a:hover { color: #fff; }

.footer-copy {
  font-size: 12px;
  color: #7c8aa8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  margin: 12px 0 0;
  width: 100%;
  max-width: 360px;
}

/* Responsive */
@media (max-width: 860px) {
  .product-detail { grid-template-columns: 1fr; gap: 24px; }
  .prose { padding: 36px 28px; }
}

@media (max-width: 720px) {
  .header-inner { height: 76px; }
  .logo-mark { height: 52px; }
  .logo-text { font-size: 21px; }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--color-primary-light);
    flex-direction: column;
    padding: 20px 24px;
    gap: 20px;
    display: none;
    z-index: 40;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero { margin-bottom: 44px; }

  .footer-inner { padding: 48px 24px 28px; }
  .footer-nav { gap: 22px; }

  .contact-fab { right: 16px; bottom: 16px; }
  .contact-toggle { height: 52px; padding: 0 20px 0 16px; gap: 8px; }
  .contact-toggle-label { font-size: 12px; letter-spacing: 1px; }
  .contact-fab.open .contact-toggle { width: 52px; }
}

/* Contact FAB */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.contact-toggle {
  position: relative;
  height: 60px;
  padding: 0 24px 0 20px;
  border-radius: 999px;
  background: var(--color-primary);
  border: 1px solid rgba(201, 168, 106, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, background .25s ease, padding .25s ease;
}

.contact-toggle svg { width: 24px; height: 24px; flex-shrink: 0; color: var(--color-accent-light); }
.contact-toggle .icon-close { display: none; }

.contact-toggle-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  white-space: nowrap;
}

.contact-fab.open .contact-toggle {
  padding: 0;
  width: 60px;
  justify-content: center;
}
.contact-fab.open .contact-toggle .icon-open { display: none; }
.contact-fab.open .contact-toggle .icon-close { display: block; }
.contact-fab.open .contact-toggle-label { display: none; }

.contact-toggle:hover { transform: scale(1.04); background: var(--color-primary-light); }

.contact-toggle-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1.5px solid var(--color-accent);
  animation: contactPulse 2.6s ease-out infinite;
  pointer-events: none;
}

.contact-fab.open .contact-toggle-pulse { display: none; }

@keyframes contactPulse {
  0% { transform: scale(1); opacity: .65; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

.contact-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.contact-fab.open .contact-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-label {
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.4px;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .2s ease, transform .2s ease;
}

.contact-option:hover .contact-label {
  opacity: 1;
  transform: translateX(0);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
  flex-shrink: 0;
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-option:hover .contact-icon {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .contact-label { display: none; }
}

/* Add-to-cart button on product cards */
.product-card .card-add {
  margin-top: 6px;
  padding: 10px 0;
  border: 1px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.product-card .card-add:hover {
  background: var(--color-primary);
  color: #fff;
}
.product-card .card-add.added {
  background: var(--color-primary);
  color: var(--color-accent-light);
  border-color: var(--color-primary);
}

/* Add-to-cart button on product detail page */
.detail-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 0;
  margin-top: 8px;
  border: none;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.detail-add:hover { background: var(--color-primary-light); }
.detail-add.added { background: #3d6b3f; }

/* Cart overlay + drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 20, 39, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 300;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--color-bg);
  box-shadow: -12px 0 40px rgba(9, 20, 39, 0.25);
  z-index: 301;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s ease;
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 28px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}
.cart-drawer-header h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-primary);
  margin: 0;
}
.cart-close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-close svg { width: 20px; height: 20px; }
.cart-close:hover { color: var(--color-primary); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 28px;
}

.cart-empty {
  text-align: center;
  color: var(--color-text-muted);
  padding: 60px 12px;
  font-size: 15px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}
.cart-item img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  background: var(--color-primary-light);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--color-primary);
  margin: 0 0 4px;
  line-height: 1.3;
}
.cart-item-price {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.cart-qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-primary);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-qty-btn:hover { border-color: var(--color-accent); }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.cart-item-remove:hover { color: var(--color-primary); }

.cart-footer {
  padding: 22px 28px 28px;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.cart-checkout {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  cursor: pointer;
  transition: background .2s ease;
}
.cart-checkout:hover { background: var(--color-primary-light); }

.cart-checkout-max {
  margin-top: 22px;
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}
.cart-checkout-max:hover { background: var(--color-primary); color: #fff; }

.cart-hint {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin: 12px 0 0;
  line-height: 1.5;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 112px;
  transform: translate(-50%, 16px);
  background: var(--color-primary);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 400;
  max-width: 90vw;
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 720px) {
  .cart-drawer { width: 100vw; }
  .toast { bottom: 92px; width: 90vw; }
}

/* Club */
.club-prose { margin-bottom: 56px; }

.club-prose ul { padding-left: 0; list-style: none; }
.club-prose li {
  margin-bottom: 14px;
  padding-left: 24px;
  position: relative;
  font-weight: 300;
  line-height: 1.7;
}
.club-prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

.club-gallery-heading {
  text-align: center;
  margin-bottom: 28px;
}
.club-gallery-heading h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--color-primary);
  margin: 0 0 8px;
}
.club-gallery-caption {
  color: var(--color-text-muted);
  font-size: 15px;
  margin: 0;
}

.club-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 64px;
}

.club-gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.club-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.club-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.club-gallery-item:hover img { transform: scale(1.05); }

.club-play-badge {
  width: 44px;
  height: 44px;
}
.club-play-badge::after { border-width: 9px 0 9px 15px; }

.club-cta {
  text-align: center;
  padding: 8px 0 16px;
}
.club-cta-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--color-primary);
  margin: 0 0 24px;
}
.club-cta-btn {
  display: inline-block;
  padding: 16px 44px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  transition: background .2s ease;
}
.club-cta-btn:hover { background: var(--color-primary-light); }

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 20, 39, 0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 500;
}
.lightbox-overlay.open { opacity: 1; pointer-events: auto; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 501;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }

.lightbox-content { max-width: min(90vw, 720px); max-height: 88vh; line-height: 0; }
.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(9, 20, 39, 0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-close:hover { background: rgba(9, 20, 39, 0.8); }

@media (max-width: 720px) {
  .club-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .lightbox-close { top: 16px; right: 16px; }
}
