/* ============================================
   DISCOVER SINGAPORE — Main Stylesheet
   Raffles Boutique-inspired luxury aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ── Custom Properties ── Logo-matched + Raffles structure ── */
:root {
  --black: #000000;
  --charcoal: #1E2D4A;        /* navy-influenced dark */
  --dark-gray: #2C3E50;
  --gray: #5A6978;
  --medium-gray: #8896A4;
  --light-gray: #C8C2B8;
  --border: #E0D9CE;           /* warm cream border */
  --off-white: #FAF8F3;        /* warm off-white */
  --white: #ffffff;
  --accent: #2C4A8C;           /* logo navy blue */
  --font-serif: 'Bodoni Moda', 'Georgia', serif;
  --font-sans: 'Jost', 'Futura', sans-serif;
  --font: var(--font-sans);
  --radius: 2px;
  --radius-sm: 2px;
  --radius-full: 2px;
  --shadow-sm: 0 1px 3px rgba(44,74,140,.05);
  --shadow-md: 0 4px 12px rgba(44,74,140,.07);
  --shadow-lg: 0 8px 30px rgba(44,74,140,.10);
  --max-w: 1200px;
  --transition: 0.3s ease;
  /* Logo palette */
  --red: #C43030;              /* logo heart red — CTAs, accents */
  --red-dark: #A82828;
  --red-light: #FAF0EF;
  --primary: #2C4A8C;          /* logo navy blue */
  --primary-light: #3A5CA0;
  --gold: #2C4A8C;             /* mapped to navy for buttons */
  --gold-hover: #1E3472;
  --gold-light: #EEF1F9;
  --navy: #2C4A8C;
  --navy-dark: #1E3472;
  --navy-light: #EEF1F9;
  --bg: #FAF8F3;               /* warm cream-white background */
  --bg-alt: #F5F0E3;           /* logo cream */
  --text: #1E2D4A;             /* navy-dark text */
  --text-muted: #6B7B8D;
  --text-light: #9AA5B1;
  --border-light: #EDE8E0;
}

/* ── Reset ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font-sans); }

/* ── Typography ──────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ── Utility ─────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--primary);
  margin-bottom: 8px;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 300;
}
.badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--medium-gray);
  background: none;
  padding: 0;
  border-radius: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
}
.btn-lg { padding: 16px 36px; font-size: 13px; }

/* ── Header / Nav ────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 56px;
  width: 240px;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  border-radius: 2px;
}
/* Footer logo wrapper */
.footer-logo-wrap {
  background: white;
  border-radius: 2px;
  padding: 8px 16px;
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo-wrap img {
  height: 36px;
  width: auto;
  display: block;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -1px;
}
.logo-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.2;
}
.logo-text span { color: var(--primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--black); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--primary);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: #25d366;
  color: white;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.nav-wa:hover { background: #1da851; transform: translateY(-1px); }
.nav-wa svg { width: 16px; height: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--primary);
  transition: all var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-md);
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}
.mobile-menu a:hover { color: var(--black); }

/* ── Announcement Bar ────────────────────── */
.announcement-bar {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.5px;
}
.announcement-bar a { color: var(--white); text-decoration: underline; }

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative;
  background: var(--primary);
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  opacity: 0.18;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--medium-gray);
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--white);
}
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
  line-height: 1.65;
  font-weight: 300;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-card {
  background: white;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1deg);
}
.hero-card:nth-child(2) { transform: rotate(2deg) translateY(-10px); }
.hero-card:nth-child(3) { transform: rotate(1deg) translateY(5px); }
.hero-card:nth-child(4) { transform: rotate(-2deg); }
.hero-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.hero-card-label {
  padding: 8px 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  color: var(--medium-gray);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ── Trust Bar ───────────────────────────── */
.trust-bar {
  background: var(--white);
  color: var(--primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--primary);
}
.trust-item svg { color: var(--primary); width: 18px; height: 18px; flex-shrink: 0; }

/* ── Category Grid ───────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.category-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform var(--transition);
}
.category-card:hover { transform: translateY(-2px); }
.category-card:hover .category-img { transform: scale(1.05); }
.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.05) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.category-overlay h3 {
  font-family: var(--font-serif);
  color: white;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
}
.category-overlay span {
  font-family: var(--font-sans);
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.category-card.featured { grid-row: span 2; }
.category-card.featured .category-overlay h3 { font-size: 22px; }

/* ── Product Grid ────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: none;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-alt);
  border-radius: 0;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--medium-gray);
  background: none;
  padding: 0;
  border-radius: 0;
}
.product-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-info { padding: 18px 4px; }
.product-category {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--medium-gray);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.35;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 400;
  color: var(--primary);
}
.product-price .currency {
  font-size: 12px;
  font-weight: 400;
  vertical-align: top;
  margin-top: 3px;
  margin-right: 1px;
  display: inline-block;
}
.add-cart-btn {
  width: 34px;
  height: 34px;
  background: var(--primary);
  color: var(--white);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.add-cart-btn:hover {
  background: var(--black);
  transform: scale(1.05);
}
.add-cart-btn svg { width: 16px; height: 16px; }

/* ── Filter Tabs ─────────────────────────── */
.filter-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 0;
  border-bottom: none;
}
.filter-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--medium-gray);
  padding: 8px 16px;
  transition: all var(--transition);
  cursor: pointer;
}
.filter-btn:hover {
  color: var(--primary);
}
.filter-btn.active {
  border-bottom-color: var(--primary);
  color: var(--primary);
  font-weight: 500;
}

/* ── Canvas Collection Banner ────────────── */
.canvas-banner {
  background: var(--primary);
  border-radius: 2px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
  position: relative;
}
.canvas-banner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.03);
  border-radius: 50%;
}
.canvas-content { position: relative; z-index: 1; max-width: 480px; }
.canvas-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  color: white;
  margin-bottom: 12px;
  line-height: 1.2;
}
.canvas-content p {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
  line-height: 1.65;
  font-weight: 300;
}
.canvas-images {
  position: relative;
  width: 280px;
  height: 200px;
  flex-shrink: 0;
}
.canvas-img {
  position: absolute;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.canvas-img:nth-child(1) {
  width: 160px;
  height: 120px;
  top: 0;
  right: 20px;
  transform: rotate(-3deg);
}
.canvas-img:nth-child(2) {
  width: 140px;
  height: 110px;
  bottom: 0;
  left: 20px;
  transform: rotate(2deg);
}
.canvas-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── About Teaser ────────────────────────── */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  border-radius: 2px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-img-badge .num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
}
.about-img-badge .label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}
.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 300;
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}
.about-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ── Shop Page ───────────────────────────── */
.shop-header {
  background: var(--primary);
  padding: 48px 0;
  text-align: center;
  color: white;
}
.shop-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.shop-header p {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  font-weight: 300;
}
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
}
.sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sort-select {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--primary);
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition);
}
.sort-select:focus { border-color: var(--primary); }
.shop-count {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  margin: 0;
}
.product-card.hidden { display: none; }

/* ── A-Z Filter Bar ─────────────────────── */
.az-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.az-btn {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 12px;
  background: none;
  border: none;
  color: var(--medium-gray);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}
.az-btn:hover { color: var(--text); }
.az-btn.active { color: var(--accent); border-bottom: 2px solid var(--accent); font-weight: 600; }
.az-btn.has-items { color: var(--text); }
.az-btn.disabled { color: var(--border); cursor: default; }

/* ── Product Placeholder (Coming Soon) ──── */
/* ── Page Header (inner pages) ───────────── */
.page-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.breadcrumb {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}
.breadcrumb a { color: var(--primary); }

/* ── About Page ──────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-full-img {
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.about-full-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.value-card {
  padding: 20px;
  background: var(--white);
  border-radius: 2px;
  border: 1px solid var(--border);
}
.value-icon {
  width: 40px;
  height: 40px;
  background: var(--off-white);
  color: var(--primary);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.value-card h4 {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.value-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 300;
}
.store-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.store-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.store-info { padding: 28px; }
.store-info h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 16px;
}
.store-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}
.store-detail svg { color: var(--primary); width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

/* ── How to Order ────────────────────────── */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}
.step-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 56px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-content h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  padding-top: 14px;
}
.step-content p { font-size: 15px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--bg-alt); }
.faq-q svg { width: 18px; height: 18px; color: var(--primary); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}
.faq-item.open .faq-a { display: block; }

/* ── Contact Page ────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
}
.contact-info p { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-bottom: 28px; font-weight: 300; }
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  color: var(--primary);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-detail-text h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--medium-gray);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.contact-detail-text p, .contact-detail-text a { font-size: 15px; font-weight: 400; color: var(--primary); }
.contact-detail-text a:hover { color: var(--dark-gray); }
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 36px;
}
.contact-form h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--medium-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--primary);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.map-embed { border-radius: 2px; overflow: hidden; margin-top: 32px; }
.map-placeholder {
  width: 100%;
  height: 200px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: 2px;
  border: 1px solid var(--border);
}

/* ── WhatsApp Sticky ─────────────────────── */
.wa-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #25d366;
  color: white;
  text-align: center;
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  z-index: 200;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.wa-sticky svg { width: 22px; height: 22px; }
.wa-sticky:hover { background: #1da851; }

/* ── Footer ──────────────────────────────── */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,.65);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-icon { background: var(--white); color: var(--primary); }
.footer-brand .logo-text { color: white; }
.footer-brand p {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 300;
}
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,.2); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: var(--font-sans);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: white; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,.35);
}
.footer-payment { display: flex; gap: 8px; align-items: center; }
.payment-icon {
  padding: 4px 8px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
}

/* ── Animations — no hidden state by default ─ */

/* ============================================
   PREMIUM HOMEPAGE — Raffles Luxury
   ============================================ */

/* ── Premium Hero ─────────────────────────── */
.premium-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1E2D4A;
}
.premium-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.premium-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.3) saturate(0.7);
}
.premium-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.8) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.85) 0%, transparent 60%);
}
.premium-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
}
.premium-hero-inner {
  max-width: 560px;
}
.premium-hero-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 28px;
}
.premium-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.premium-hero-title em {
  font-style: italic;
  color: var(--white);
}
.premium-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 460px;
  font-weight: 300;
}
.premium-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Gold button → now black/white Raffles style */
.btn-gold {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
}
.btn-gold:hover {
  background: var(--off-white);
  border-color: var(--off-white);
  transform: translateY(-2px);
}

/* Ghost luxury button */
.btn-ghost-lux {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
}
.btn-ghost-lux:hover {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
}

/* Hero showcase cards */
.premium-hero-showcase {
  position: relative;
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.hero-showcase-card {
  width: 260px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  transition: transform 0.5s ease;
}
.hero-showcase-card:hover {
  transform: translateY(-8px) rotate(0deg);
}
.hero-showcase-card:first-child {
  transform: rotate(-3deg);
}
.hero-showcase-card--offset {
  transform: rotate(2deg) translateY(40px) !important;
}
.hero-showcase-card--offset:hover {
  transform: rotate(0deg) translateY(32px) !important;
}
.hero-showcase-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

/* Scroll indicator */
.premium-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.premium-hero-scroll span {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.5);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ── Credential Bar ───────────────────────── */
.credential-bar {
  background: var(--white);
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.credential-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.credential-icon {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.credential-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}
.credential-text {
  display: flex;
  flex-direction: column;
}
.credential-text strong {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}
.credential-text span {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 300;
}
.credential-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── Story Section ────────────────────────── */
.story-section {
  padding: 120px 0;
  background: var(--white);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--medium-gray);
  margin-bottom: 16px;
}
.story-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.story-title em {
  font-style: italic;
  color: var(--primary);
}
.story-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}
.story-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.story-stat {
  display: flex;
  flex-direction: column;
}
.story-stat-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
}
.story-stat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
}

/* Story images */
.story-image {
  position: relative;
}
.story-image-main {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-image-main img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.story-image-accent {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
  border: 4px solid var(--white);
}
.story-image-accent img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* ── Featured Section ─────────────────────── */
.featured-section {
  padding: 120px 0;
  background: var(--bg-alt);
}
.featured-header {
  text-align: center;
  margin-bottom: 64px;
}
.featured-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 12px;
  font-weight: 300;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.featured-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  border: none;
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.featured-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-alt);
}
.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.featured-card:hover .featured-card-img img {
  transform: scale(1.05);
}
.featured-card-info {
  padding: 24px 8px;
}
.featured-card-category {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--medium-gray);
  margin-bottom: 8px;
}
.featured-card-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.featured-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}
.featured-cta {
  text-align: center;
  margin-top: 56px;
}

/* ── Collection Showcase ──────────────────── */
.collection-section {
  position: relative;
  overflow: hidden;
}
.collection-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.collection-image {
  position: relative;
  overflow: hidden;
}
.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.collection-section:hover .collection-image img {
  transform: scale(1.03);
}
.collection-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 80px 64px;
}
.collection-content-inner {
  max-width: 440px;
}
.collection-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.collection-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}
.collection-content .story-eyebrow {
  color: var(--medium-gray);
}

/* Reverse layout for second collection */
.collection-section--reverse .collection-split {
  direction: rtl;
}
.collection-section--reverse .collection-split > * {
  direction: ltr;
}

/* ── Retail Section ───────────────────────── */
.retail-section {
  padding: 120px 0;
  background: var(--white);
}
.retail-header {
  text-align: center;
  margin-bottom: 64px;
}
.retail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.retail-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--border);
  border-radius: 0;
  transition: all 0.4s ease;
}
.retail-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.retail-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 0;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.retail-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}
.retail-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 12px;
}
.retail-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Editorial Banner ─────────────────────── */
.editorial-banner {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.editorial-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.editorial-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.editorial-banner-content {
  text-align: center;
}
.editorial-banner-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.editorial-banner-content h2 em {
  font-style: italic;
  color: var(--white);
}

/* ── Premium CTA ──────────────────────────── */
.premium-cta {
  padding: 120px 0;
  background: var(--primary);
}
.premium-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.premium-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.premium-cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */

.product-page {
  padding: 64px 0 96px;
}
.product-breadcrumb {
  margin-bottom: 40px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
}
.product-breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.product-breadcrumb a:hover {
  color: var(--primary);
}
.product-breadcrumb span {
  color: var(--text-light);
  margin: 0 8px;
}
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-detail-image {
  background: var(--bg-alt);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border: 1px solid var(--border);
}
.product-detail-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 0;
}
.product-detail-info {
  padding-top: 16px;
}
.product-detail-category {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--medium-gray);
  margin-bottom: 12px;
}
.product-detail-name {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.product-detail-price {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 24px;
}
.product-detail-price .currency {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  margin-right: 4px;
}
.product-detail-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}
.product-detail-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.product-detail-actions .btn-gold {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 13px;
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.product-detail-actions .btn-gold:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.product-wa-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all var(--transition);
}
.product-wa-link:hover {
  border-color: #25d366;
  color: #25d366;
}
.product-wa-link svg {
  width: 18px;
  height: 18px;
}

/* Product accordion */
.product-accordion {
  border-top: 1px solid var(--border);
}
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
}
.accordion-header svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.accordion-item.open .accordion-header svg {
  transform: rotate(180deg);
}
.accordion-body {
  display: none;
  padding-bottom: 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}
.accordion-item.open .accordion-body {
  display: block;
}

/* Related products */
.related-section {
  padding: 100px 0;
  background: var(--bg-alt);
}
.related-header {
  text-align: center;
  margin-bottom: 48px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card.featured { grid-row: auto; }
  .hero-image { width: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-teaser { gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  /* Premium homepage */
  .premium-hero-content { grid-template-columns: 1fr; gap: 48px; padding-top: 140px; }
  .premium-hero-showcase { justify-content: flex-start; }
  .hero-showcase-card { width: 200px; }
  .story-grid { gap: 48px; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-split { min-height: 480px; }
  .collection-content { padding: 56px 40px; }
  .story-section, .featured-section, .retail-section, .premium-cta { padding: 80px 0; }
  .credential-bar-inner { gap: 32px; }
  /* Product page */
  .product-detail { gap: 40px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-actions .nav-wa span { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero { min-height: 500px; }
  .hero-image { display: none; }
  .hero-content { max-width: 100%; }
  .about-teaser { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .canvas-banner { flex-direction: column; padding: 32px 24px; }
  .canvas-images { display: none; }
  .trust-bar-inner { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .wa-sticky { display: flex; }
  body { padding-bottom: 60px; }
  .filter-wrap { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: 11px; }
  .values-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 28px; }
  /* Premium homepage */
  .premium-hero { min-height: auto; }
  .premium-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 120px;
    padding-bottom: 100px;
    min-height: auto;
  }
  .premium-hero-showcase { display: none; }
  .premium-hero-scroll { display: none; }
  .premium-hero-title { font-size: clamp(32px, 8vw, 48px); }
  .credential-bar { padding: 32px 0; }
  .credential-bar-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .credential-divider { width: 100%; height: 1px; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-image-accent { position: relative; bottom: auto; left: auto; width: 140px; margin-top: -60px; margin-left: 20px; }
  .story-section, .featured-section, .retail-section, .premium-cta { padding: 64px 0; }
  .featured-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .collection-split { grid-template-columns: 1fr; min-height: auto; }
  .collection-image { height: 300px; }
  .collection-content { padding: 48px 24px; }
  .collection-section--reverse .collection-split { direction: ltr; }
  .retail-grid { grid-template-columns: 1fr; gap: 16px; }
  .retail-card { padding: 32px 24px; }
  .editorial-banner { height: 320px; }
  .story-stats { gap: 24px; flex-wrap: wrap; }
  /* Product page */
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .product-detail-image { padding: 24px; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .az-btn { padding: 6px 8px; font-size: 11px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-info { padding: 12px 4px; }
  .product-name { font-size: 13px; }
  .product-price { font-size: 15px; }
  .footer-grid { grid-template-columns: 1fr; }
  .canvas-banner { padding: 24px 20px; }
  .contact-form { padding: 24px 20px; }
  /* Premium homepage */
  .premium-hero-content { padding-top: 100px; padding-bottom: 80px; }
  .premium-hero-title { font-size: 32px; margin-bottom: 20px; }
  .premium-hero-sub { font-size: 15px; margin-bottom: 28px; }
  .premium-hero-actions { flex-direction: column; }
  .premium-hero-actions .btn { width: 100%; justify-content: center; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card-info { padding: 16px 8px; }
  .featured-card-name { font-size: 17px; }
  .collection-content { padding: 36px 20px; }
  .collection-title { font-size: 28px; }
  .story-title { font-size: 28px; }
  .editorial-banner { height: 240px; }
  .editorial-banner-content h2 { font-size: 24px; padding: 0 20px; }
  .editorial-magnet-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; padding: 24px 16px !important; }
  .premium-cta-title { font-size: 24px; }
  .premium-cta-inner { padding: 0 8px; }
  .story-stats { flex-direction: column; gap: 20px; }
  /* Product page */
  .product-detail-name { font-size: 24px; }
  .product-detail-price { font-size: 22px; }
  .product-page { padding: 32px 0 64px; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .related-section { padding: 64px 0; }
}

/* Editorial magnet grid */
.editorial-magnet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 40px 24px;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.25;
}
.editorial-magnet-grid img { width: 100%; display: block; }
@media (max-width: 768px) {
  .editorial-magnet-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 24px 16px; }
}

/* ── Branded Product Placeholder (when no photo yet) ── */
.product-placeholder {
  aspect-ratio: 3/4;
  background:
    radial-gradient(circle at 30% 20%, rgba(196, 48, 48, 0.06), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(44, 74, 140, 0.08), transparent 50%),
    linear-gradient(145deg, #FAF8F3 0%, #F5F0E3 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  padding: 20px;
  text-align: center;
}
.product-placeholder::before,
.product-placeholder::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  background: repeating-linear-gradient(90deg,
    #C43030 0px, #C43030 12px,
    #ffffff 12px, #ffffff 16px,
    #2C4A8C 16px, #2C4A8C 28px,
    #ffffff 28px, #ffffff 32px,
    #C9A020 32px, #C9A020 44px,
    #ffffff 44px, #ffffff 48px
  );
  opacity: 0.35;
}
.product-placeholder::before { top: 0; }
.product-placeholder::after { bottom: 0; }
.product-placeholder span {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--primary);
  font-weight: 500;
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 6px;
}
.product-placeholder span::before {
  content: "Discover Singapore";
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  opacity: 0.9;
}
.product-placeholder span::after {
  content: "Coming Soon";
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--medium-gray);
  font-weight: 500;
  font-style: normal;
  margin-top: 8px;
}
.product-detail-image .product-placeholder {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* ──────────────────────────────────────────────
   CART & CHECKOUT — Raffles aesthetic
   ────────────────────────────────────────────── */

/* Page wrapper for cart/checkout */
.woocommerce-cart, .woocommerce-checkout, .woocommerce-account {
  background: var(--off-white);
}
.woocommerce-cart .wp-site-blocks,
.woocommerce-checkout .wp-site-blocks,
.woocommerce-account .wp-site-blocks {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

/* Page titles on cart/checkout/account */
.woocommerce-cart h1.entry-title,
.woocommerce-checkout h1.entry-title,
.woocommerce-account h1.entry-title,
.wp-block-woocommerce-cart h1,
.wp-block-woocommerce-checkout h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--primary);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  text-align: center;
}

/* WooCommerce notice messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.wc-block-components-notice-banner {
  background: var(--off-white) !important;
  border-left: 4px solid var(--primary) !important;
  border-radius: 0 !important;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--primary) !important;
  padding: 16px 24px !important;
  margin: 16px 0 !important;
}
.woocommerce-message a, .woocommerce-info a {
  color: var(--accent);
  font-weight: 500;
}

/* Cart item rows */
.wc-block-cart-items {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.wc-block-cart-items__row {
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0 !important;
}
.wc-block-cart-items__row:last-child {
  border-bottom: none;
}
.wc-block-cart-item__product img,
.wc-block-components-product-image img {
  border-radius: 0 !important;
  border: 1px solid var(--border);
}
.wc-block-components-product-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--primary);
  letter-spacing: 0.01em;
}
.wc-block-components-product-price__value,
.wc-block-formatted-money-amount {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--primary);
}

/* Cart totals box */
.wc-block-cart__sidebar,
.wc-block-components-totals-wrapper,
.wp-block-woocommerce-cart-order-summary-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 32px !important;
}
.wc-block-components-totals-item__label {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}
.wc-block-components-totals-item__value {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--primary);
}

/* Quantity selector */
.wc-block-components-quantity-selector,
.qty {
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
}
.wc-block-components-quantity-selector__button {
  background: var(--off-white) !important;
  color: var(--primary) !important;
  border: none !important;
}
.wc-block-components-quantity-selector__input {
  border: none !important;
  font-family: var(--font-sans);
  font-weight: 500;
}

/* Buttons — Place Order, Proceed to Checkout */
.wp-block-button__link,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.button[name="proceed"],
.wc-proceed-to-checkout .checkout-button,
.wc-block-components-button.outlined,
.wc-block-components-button {
  background: var(--primary) !important;
  color: var(--white) !important;
  border: 1px solid var(--primary) !important;
  border-radius: 0 !important;
  font-family: var(--font-sans) !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 16px 32px !important;
  transition: var(--transition) !important;
}
.wp-block-button__link:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover,
.button[name="proceed"]:hover,
.wc-proceed-to-checkout .checkout-button:hover {
  background: var(--primary-light) !important;
  border-color: var(--primary-light) !important;
  color: var(--white) !important;
}

/* Checkout form fields */
.wc-block-components-text-input input,
.wc-block-components-textarea,
.wc-block-components-select select,
input.input-text,
textarea {
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  padding: 14px 16px !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  background: var(--white) !important;
  color: var(--primary) !important;
  transition: var(--transition);
}
.wc-block-components-text-input input:focus,
input.input-text:focus,
textarea:focus {
  border-color: var(--primary) !important;
  outline: none !important;
  box-shadow: 0 0 0 1px var(--primary) !important;
}
.wc-block-components-text-input label,
.wc-block-components-checkout-step__heading-content,
form .form-row label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Checkout section headings */
.wc-block-components-checkout-step__title,
.wc-block-components-title {
  font-family: var(--font-serif) !important;
  font-weight: 400 !important;
  font-size: 22px !important;
  color: var(--primary) !important;
  letter-spacing: 0.02em !important;
}
.wc-block-components-checkout-step__description {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 300;
}

/* Payment method radio cards */
.wc-block-components-radio-control__option {
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  padding: 16px 20px !important;
  margin-bottom: 8px !important;
  background: var(--white);
  transition: var(--transition);
}
.wc-block-components-radio-control__option-checked,
.wc-block-components-radio-control__option:has(input:checked) {
  border-color: var(--primary) !important;
  background: var(--off-white) !important;
}
.wc-block-components-radio-control__label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 0.5px;
}

/* Order received / thank you page */
.woocommerce-order-received .woocommerce-thankyou-order-received,
.woocommerce-thankyou-order-received {
  font-family: var(--font-serif) !important;
  font-weight: 400 !important;
  font-size: clamp(24px, 3vw, 36px) !important;
  color: var(--primary) !important;
  text-align: center;
  margin: 24px 0;
}
.woocommerce-order-overview {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
  list-style: none !important;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}
.woocommerce-order-overview li {
  border: none !important;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.woocommerce-order-overview li strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--primary);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 6px;
  font-weight: 500;
}

/* Empty cart message */
.cart-empty,
.wc-block-cart__empty-cart__title,
.wp-block-woocommerce-empty-cart-block h2 {
  font-family: var(--font-serif) !important;
  font-weight: 400 !important;
  font-size: 24px !important;
  color: var(--primary) !important;
  text-align: center;
}

/* Coupon section */
.wc-block-components-totals-coupon__form input,
.coupon input {
  flex: 1;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  padding: 10px 12px !important;
  font-size: 13px !important;
}

/* My Account pages */
.woocommerce-MyAccount-navigation {
  border-right: 1px solid var(--border);
  padding-right: 24px;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-MyAccount-navigation li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.woocommerce-MyAccount-navigation a {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
}
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation a:hover {
  color: var(--primary);
  font-weight: 500;
}

/* Address / Order tables */
.woocommerce-table,
table.shop_table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0 !important;
  font-family: var(--font-sans);
}
.woocommerce-table th,
table.shop_table th {
  background: var(--off-white);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 16px !important;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.woocommerce-table td,
table.shop_table td {
  padding: 14px 16px !important;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}

/* Order received bank details / instructions */
.woocommerce-order-details,
.woocommerce-bacs-bank-details {
  background: var(--off-white);
  border-left: 4px solid var(--accent);
  padding: 24px;
  margin: 24px 0;
  font-family: var(--font-sans);
}
.woocommerce-bacs-bank-details h2,
.woocommerce-order-details h2 {
  font-family: var(--font-serif) !important;
  font-weight: 500 !important;
  font-size: 20px !important;
  color: var(--primary) !important;
  margin-top: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .woocommerce-cart .wp-site-blocks,
  .woocommerce-checkout .wp-site-blocks,
  .woocommerce-account .wp-site-blocks {
    padding: 40px 16px 60px;
  }
  .wc-block-cart__sidebar,
  .wp-block-woocommerce-cart-order-summary-block {
    padding: 24px !important;
  }
}
