/* =========================================
   RS events - Global Styles
   Brand: Black + gold (DJ / events theme)
   ========================================= */

:root {
  --color-primary: #0a0a0a;
  --color-primary-light: #1a1a1a;
  --color-primary-dark: #000000;
  --color-accent: #D4AF37;
  --color-accent-dark: #A68B2A;
  --color-accent-light: #F0D78C;
  --color-gold-gradient: linear-gradient(135deg, #F5E6B8 0%, #D4AF37 45%, #9A7B1A 100%);
  --color-bg: #f5f4f1;
  --color-surface: #ffffff;
  --color-text: #141414;
  --color-text-muted: #5c5c5c;
  --color-border: #e0ddd6;
  --color-success: #16a34a;
  --color-danger: #dc2626;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.25);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --font-heading: "Cinzel", Georgia, "Times New Roman", serif;
  --font-script: "Great Vibes", "Segoe Script", cursive;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;

  --container: 1280px;
  --header-h: 80px;
  --topbar-h: 38px;

  --transition: 200ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  overflow-x: clip;
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-primary);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; margin: 0 0 1em; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
  overflow-x: clip;
}
.section-sm { padding: 48px 0; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { margin-bottom: 8px; }
.section-title p { color: var(--color-text-muted); max-width: 640px; margin: 0 auto; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-gold-gradient);
  color: #0a0a0a;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}
.btn-secondary {
  background: var(--color-primary);
  color: var(--color-accent-light);
  border-color: rgba(212, 175, 55, 0.4);
}
.btn-secondary:hover {
  background: var(--color-primary-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-ghost:hover {
  background: var(--color-primary);
  color: var(--color-accent-light);
  border-color: var(--color-primary);
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; }

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--color-primary);
  background-image: linear-gradient(90deg, #0a0a0a, #1a1510 25%, #0a0a0a 50%, #1a1510 75%, #0a0a0a);
  background-size: 200% 100%;
  color: var(--color-accent-light);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 8px 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: promoShine 10s linear infinite;
  position: relative;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}
.promo-bar i { margin-right: 6px; color: var(--color-accent); }
.promo-bar a {
  color: var(--color-accent);
  text-decoration: underline;
  font-weight: 700;
}
@keyframes promoShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ---------- Top bar ---------- */
.topbar {
  background: #050505;
  color: #b8b8b8;
  font-size: 13px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar-info { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-info a, .topbar-info span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-info a:hover { color: var(--color-accent); }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a:hover { color: var(--color-accent); }

/* ---------- Header ---------- */
.site-header {
  background: var(--color-primary);
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  width: 100%;
  max-width: 100%;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  min-width: 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
  transition: transform var(--transition);
}
.logo:hover { transform: translateY(-1px); }
.logo--brand { gap: 0; }

.logo-img {
  display: block;
  height: 64px;
  width: auto;
  max-height: 64px;
  max-width: min(150px, 40vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  transition: filter var(--transition), transform var(--transition);
}
.logo-img--crest {
  filter: drop-shadow(0 2px 14px rgba(212, 175, 55, 0.45));
}
.logo:hover .logo-img--crest {
  filter: drop-shadow(0 4px 18px rgba(212, 175, 55, 0.55));
}
.site-footer .logo-img {
  height: 96px;
  max-height: 96px;
  max-width: 220px;
}

/* HTML wordmark fallback (if used elsewhere) */
.logo-wordmark { display: inline-flex; align-items: center; gap: 10px; }
.logo-rs {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  text-transform: uppercase;
}
.logo-events {
  font-family: var(--font-script);
  font-size: 1.45rem;
  color: var(--color-accent-light);
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav > a,
.main-nav .nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #e8e8e8;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}
.main-nav > a:hover,
.main-nav .nav-dropdown-toggle:hover,
.main-nav > a.active,
.main-nav .nav-dropdown.active > .nav-dropdown-toggle {
  color: var(--color-accent-light);
  background: rgba(212, 175, 55, 0.12);
}
.main-nav > a.active::after,
.main-nav .nav-dropdown.active > .nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-caret {
  font-size: 11px;
  transition: transform var(--transition);
}
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }
@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .nav-caret { transform: rotate(180deg); }
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 110;
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: var(--color-bg);
  color: var(--color-primary);
}
.nav-dd-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}
.nav-dd-text { display: flex; flex-direction: column; line-height: 1.25; }
.nav-dd-text strong { font-size: 14px; font-weight: 600; color: var(--color-primary); }
.nav-dd-text small { font-size: 12px; color: var(--color-text-muted); margin-top: 2px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--color-accent-light);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.icon-btn:hover { background: rgba(212, 175, 55, 0.15); color: #fff; }
.quote-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--color-accent);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.quote-count[hidden] { display: none; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--color-accent-light);
  font-size: 22px;
}

/* ---------- Hero slider ---------- */
.hero {
  position: relative;
  min-height: 600px;
  color: #fff;
  overflow: hidden;
  background: var(--color-primary-dark);
}
.hero-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
  isolation: isolate;
}
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 35%;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 1400ms ease, visibility 0s linear 900ms;
}
.hero-slide.active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  transition: opacity 900ms ease, transform 6000ms ease-out, visibility 0s;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0, 0, 0, 0.82) 0%, rgba(10, 10, 10, 0.55) 55%, rgba(0, 0, 0, 0.35) 100%);
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(212, 175, 55, 0.28), transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(212, 175, 55, 0.15), transparent 45%);
  pointer-events: none;
}
.hero .eyebrow { color: var(--color-accent-light); }
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 100px 0;
}
.hero h1 {
  color: #fff;
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  letter-spacing: -0.01em;
}
.hero p { font-size: 18px; opacity: 0.92; margin-bottom: 32px; max-width: 580px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.hero-dots button {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  transition: background var(--transition), width var(--transition);
}
.hero-dots button.active {
  background: var(--color-accent);
  width: 56px;
}
.hero-nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  transition: background var(--transition);
  z-index: 4;
}
.hero-nav:hover { background: rgba(255, 255, 255, 0.22); }
.hero-nav.prev { left: 24px; transform: translateY(-50%); }
.hero-nav.next { right: 24px; transform: translateY(-50%); }

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide.active {
    transform: none !important;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s !important;
  }
  .hero-slide.active {
    transition: opacity 0.35s ease, visibility 0s !important;
  }
}

.page-banner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.35), transparent 70%);
}
.page-banner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--color-gold-gradient);
}
.page-banner h1 { color: #fff; margin-bottom: 8px; }
.breadcrumb {
  font-size: 13px;
  opacity: 0.85;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.page-banner p {
  max-width: 100%;
  overflow-wrap: anywhere;
}
.breadcrumb a:hover { color: var(--color-accent); }

/* ---------- Category cards (Home) ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 20px;
}
.category-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
  position: relative;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.category-card-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  position: relative;
  overflow: hidden;
}
.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.category-card-img--contain {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-card-img--contain img {
  object-fit: contain;
  object-position: center;
  padding: 10px;
}
.category-card:hover .category-card-img img { transform: scale(1.07); }
.category-card:hover .category-card-img--contain img { transform: none; }
.category-card-body { padding: 16px 20px; }
.category-card-body h3 { margin-bottom: 4px; font-size: 18px; }
.category-card-body p { font-size: 13px; color: var(--color-text-muted); margin: 0; }

/* ---------- Product grid ---------- */
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 0 24px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
}
.toolbar-info { color: var(--color-text-muted); font-size: 14px; }
.toolbar-controls { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.select-control {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: #fff;
  font-family: inherit;
  font-size: 13px;
  color: var(--color-text);
  cursor: pointer;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}
.catalog-layout > * {
  min-width: 0;
}
.filter-sidebar {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
  position: sticky;
  top: calc(var(--header-h) + 20px);
  max-width: 100%;
}
.filter-group { padding: 16px 0; border-bottom: 1px solid var(--color-border); }
.filter-group:first-child { padding-top: 0; }
.filter-group:last-child { padding-bottom: 0; border-bottom: none; }
.filter-group h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: 12px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--color-text-muted);
  cursor: pointer;
  user-select: none;
}
.filter-option input { accent-color: var(--color-accent); }
.filter-option:hover { color: var(--color-primary); }
.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 100%;
}
.filter-sidebar .filter-chips {
  flex-wrap: wrap;
}
.chip {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 13px;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition);
}
.chip:hover { border-color: var(--color-primary); }
.chip.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-card-img {
  aspect-ratio: 4 / 3;
  background: var(--color-bg);
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-img--contain {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img--contain img {
  object-fit: contain;
  object-position: center;
  padding: 10px;
  width: 100%;
  height: 100%;
}
.product-card:hover .product-card-img--contain img { transform: none; }
.product-card-img--static {
  display: block;
  cursor: default;
}
.product-card-marquee-specs {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0 0 14px;
  line-height: 1.45;
}
.product-card-marquee-specs > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.product-card-marquee-specs > div:last-child { border-bottom: 0; }
.product-card-marquee-specs span { flex-shrink: 0; opacity: 0.9; }
.product-card-marquee-specs strong {
  text-align: right;
  font-weight: 600;
  color: var(--color-text);
  font-size: 12px;
}
.product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  background: linear-gradient(145deg, var(--color-primary) 0%, #1a1a1a 100%);
  color: var(--color-accent);
}
.product-card-placeholder span {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.detail-gallery-placeholder {
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  background: linear-gradient(145deg, var(--color-primary) 0%, #1a1a1a 100%);
  border-radius: var(--radius-md);
  color: var(--color-accent);
}
.detail-gallery-placeholder i { font-size: 40px; opacity: 0.9; }
.detail-gallery-placeholder p {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0;
  line-height: 1.4;
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-accent);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.product-card-body h3 { font-size: 16px; margin-bottom: 4px; color: var(--color-primary); }
.product-card-body .meta {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.product-price {
  font-family: var(--font-heading);
  color: var(--color-accent-dark);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 14px;
}
.product-price .unit { color: var(--color-text-muted); font-size: 12px; font-weight: 400; }
.product-actions { display: flex; gap: 8px; margin-top: auto; }
.product-actions .btn { flex: 1; padding: 10px 12px; font-size: 13px; }

/* ---------- Why us / features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #0a0a0a;
  border: 1px solid rgba(212, 175, 55, 0.45);
}
.feature h3 { font-size: 17px; margin-bottom: 6px; }
.feature p { font-size: 14px; color: var(--color-text-muted); margin: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.28), transparent 70%);
}
.cta-banner::before { width: 360px; height: 360px; top: -120px; left: -80px; }
.cta-banner::after { width: 280px; height: 280px; bottom: -100px; right: -60px; }
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { opacity: 0.9; margin-bottom: 24px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #050505;
  color: #b0b0b0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 64px 0 0;
  margin-top: 80px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.site-footer h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.site-footer p { font-size: 14px; line-height: 1.7; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a:hover { color: var(--color-accent); }\n.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 20px 0;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
/* ---------- Floating WhatsApp ---------- */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  font-size: 26px;
  transition: transform var(--transition);
}
.fab-whatsapp:hover { transform: scale(1.08); }

/* ---------- Quote drawer ---------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 200;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 400px;
  max-width: 90vw;
  background: #fff;
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 300ms ease;
  box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-header h3 { margin: 0; font-size: 18px; }
.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--color-text);
}
.drawer-close:hover { background: var(--color-bg); }
.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}
.drawer-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-muted);
}
.drawer-empty .icon { font-size: 48px; color: var(--color-border); margin-bottom: 16px; }
.drawer-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.drawer-item img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--color-bg);
}
.drawer-item-info { flex: 1; }
.drawer-item-info h4 { font-size: 14px; margin: 0 0 4px; color: var(--color-text); }
.drawer-item-info .meta { font-size: 12px; color: var(--color-text-muted); }
.drawer-item-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-top: 6px;
}
.drawer-item-qty button { padding: 4px 10px; color: var(--color-primary); }
.drawer-item-qty span { padding: 0 10px; font-size: 13px; min-width: 24px; text-align: center; }
.drawer-remove {
  background: transparent;
  color: var(--color-danger);
  font-size: 12px;
  align-self: flex-start;
}
.drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ---------- Forms ---------- */
.form-alert {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.form-alert--success {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}
.form-alert--error {
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
input.date-ddmmyyyy.form-control {
  cursor: text;
  letter-spacing: 0.02em;
}
input.date-ddmmyyyy::placeholder {
  color: var(--color-text-muted);
  opacity: 0.85;
  font-weight: 500;
}
.form-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(14, 42, 71, 0.08);
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* ---------- Product detail ---------- */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.detail-gallery {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.detail-gallery-main {
  aspect-ratio: 4 / 3;
  background: var(--color-bg);
}
.detail-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.detail-gallery-main--contain {
  aspect-ratio: 3 / 4;
  max-height: 520px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-gallery-main--contain img {
  object-fit: contain;
  object-position: center;
  padding: 20px;
  max-height: 100%;
}
.detail-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px;
}
.detail-gallery-thumbs img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.detail-gallery-thumbs img:hover, .detail-gallery-thumbs img.active { opacity: 1; }
.detail-info h1 { margin-bottom: 8px; }
.detail-meta { color: var(--color-text-muted); margin-bottom: 24px; }
.detail-price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-accent-dark);
  margin-bottom: 24px;
}
.spec-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  border-top: 1px solid var(--color-border);
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}
.spec-list .label { color: var(--color-text-muted); }

.package-includes {
  margin: 28px 0;
  padding: 24px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
}
.package-includes h3 {
  margin: 0 0 16px;
  font-size: 1.25rem;
}
.package-items-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.package-items-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}
.package-items-list li:last-child { border-bottom: none; }
.package-items-list strong {
  display: block;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.package-items-list span { color: var(--color-text-muted); }
.package-custom-note {
  margin: 0;
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 500;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-right: 12px;
}
.qty-control button { padding: 10px 16px; color: var(--color-primary); font-size: 16px; }
.qty-control input {
  width: 48px;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 0;
}
.qty-control input:focus { outline: none; }

/* ---------- Calculators (Flooring / Video Booth) ---------- */
.calc-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.calc-card h3 { margin-bottom: 8px; }
.calc-card .price-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-accent-dark);
  margin-bottom: 16px;
}
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.calc-total {
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.calc-total .amount {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 20px;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 42, 71, 0.6), transparent 40%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 22px;
  display: grid;
  place-items: center;
}

/* ---------- Range / Shop By Event ---------- */
.range-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
}
.range-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  isolation: isolate;
}
.range-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.range-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 800ms ease;
  z-index: -2;
}
.range-card:hover .range-card-img { transform: scale(1.07); }
.range-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 23, 42, 0.92) 10%, rgba(8, 23, 42, 0.4) 50%, rgba(8, 23, 42, 0.1) 100%);
  z-index: -1;
}
.range-card-body {
  padding: 28px 28px 24px;
  width: 100%;
}
.range-card-body h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 22px;
}
.range-card-body p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 16px;
}
.range-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-accent);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--transition), gap var(--transition);
}
.range-card:hover .range-link {
  border-color: var(--color-accent);
  gap: 10px;
}

/* ---------- Product rail (horizontal scroller) ---------- */
.rail-wrap {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.product-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 4px 16px;
  scroll-behavior: smooth;
}
.product-rail::-webkit-scrollbar { display: none; }
.product-rail > .product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}
.rail-nav {
  position: absolute;
  top: 38%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  transition: background var(--transition), color var(--transition);
}
.rail-nav:hover { background: var(--color-primary); color: #fff; }
.rail-nav.prev { left: -22px; }
.rail-nav.next { right: -22px; }

/* ---------- Hire Guide cards ---------- */
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.guide-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.guide-card-img {
  background-size: cover;
  background-position: center;
  min-height: 220px;
}
.guide-card-body { padding: 24px 26px; display: flex; flex-direction: column; }
.guide-card-body .eyebrow { margin-bottom: 6px; }
.guide-card-body h3 { font-size: 20px; margin-bottom: 8px; }
.guide-card-body p { font-size: 14px; color: var(--color-text-muted); margin-bottom: 16px; flex: 1; }
.guide-card-body a {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 2px;
  transition: gap var(--transition), color var(--transition);
}
.guide-card-body a:hover { gap: 10px; color: var(--color-accent-dark); border-color: var(--color-accent-dark); }

/* ---------- Trust strip (under hero) ---------- */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text);
}
.trust-item i {
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  color: var(--color-accent);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
}
.trust-item strong { display: block; font-size: 14px; }
.trust-item small { color: var(--color-text-muted); font-size: 12px; }

/* ---------- Star ratings ---------- */
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-accent);
  font-size: 16px;
  margin-bottom: 10px;
}
.stars i { font-size: 14px; }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.4;
}
.testimonial p {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 18px;
  position: relative;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-gold-gradient);
  color: #0a0a0a;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author small { color: var(--color-text-muted); font-size: 12px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 80px);
  background: var(--color-primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 250;
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
  pointer-events: none;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.contact-info-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 18px;
}
.contact-info-item strong { display: block; margin-bottom: 2px; }
.contact-info-item p { margin: 0; font-size: 14px; color: var(--color-text-muted); }
.map-embed {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-md);
  border: none;
  margin-top: 32px;
}

/* ---------- Empty state ---------- */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--color-text-muted);
}
.empty-state .icon { font-size: 72px; color: var(--color-border); margin-bottom: 24px; }
.empty-state h3 { color: var(--color-text); margin-bottom: 8px; }
