/* === Bathini Fiber — Light Minimalist Luxury Stylesheet === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --brand: #C8A96E; /* Warm Champagne Gold */
  --brand-dark: #A88B4A; /* Deeper Gold */
  --brand-light: #E8D5A8; /* Soft Champagne */
  --gold: #C8A96E; /* Warm Champagne Gold */
  --bg: #FAF8F5; /* Warm Cream White */
  --surface: #FFFFFF; /* Pure White */
  --surface-card: #F5F2ED; /* Warm Off-White */
  --ink: #2D2A26; /* Dark Warm Brown */
  --muted: #8A8579; /* Warm Grey */
  --border: #E5E0D5; /* Warm Light Border */
  --accent: #C8A96E; /* Gold Accent for CTA */
  --accent-hover: #A88B4A; /* Deeper Gold Hover */
  --danger: #D45454;
  --success: #5B9E6F;
  --warn: #D4A846;
  --radius: 8px; /* Clean crisp boutique styling */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  --gold-glow: 0 0 15px rgba(200, 169, 110, 0.08);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background-color: var(--bg);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.2px;
  color: var(--ink);
}

/* Base fade-in animation for pages */
main.main {
  animation: pageFadeIn 0.5s ease-out;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--brand-dark);
  text-decoration: none;
}
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  color: var(--gold);
  margin: 0 0 12px;
  line-height: 1.25;
  letter-spacing: 0.3px;
}
h1 { font-size: 38px; font-weight: 600; }
h2 { font-size: 30px; font-weight: 500; }
h3 { font-size: 22px; font-weight: 500; }
h4 { font-size: 18px; font-weight: 500; }

.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(20px, 4vw, 48px);
}
.container.narrow { max-width: 880px; margin: 0 auto; }
.section { padding: clamp(60px, 7vw, 100px) 0; }
.muted { color: var(--muted); font-size: 14px; }
.text-center { text-align: center; }

/* === Topbar & Header === */
.topbar {
  background: var(--surface-card);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.6px;
}
.topbar strong { color: var(--gold); }

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 100%;
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(16px, 2vw, 28px) clamp(24px, 4vw, 64px);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.brand:hover { text-decoration: none; }
.brand-logo {
  width: clamp(84px, 9vw, 128px);
  height: clamp(52px, 4.5vw, 74px);
  border-radius: 0;
  object-fit: cover;
  object-position: center 58%;
  display: block;
  flex-shrink: 0;
}
.brand-logo.big {
  width: min(72vw, 260px);
  height: clamp(112px, 34vw, 170px);
  object-position: center 58%;
}
.brand-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 24px; color: var(--gold); }

.search { display: flex; max-width: 480px; width: 100%; position: relative; }
.search input {
  flex: 1;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: 6px 0 0 6px;
  font-size: 14px;
  background: var(--bg);
  color: var(--ink);
  transition: var(--transition);
}
.search input:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 8px rgba(200, 169, 110, 0.08);
}
.search button {
  background: var(--gold);
  color: white;
  border: 0;
  padding: 0 20px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.search button:hover { background: var(--brand-light); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.nav-link { color: var(--ink); font-size: 14px; font-weight: 500; transition: var(--transition); }
.nav-link:hover { color: var(--gold); text-decoration: none; }
.cart-link { position: relative; color: var(--gold); font-size: 22px; transition: var(--transition); display: inline-flex; align-items: center; }
.cart-link:hover { transform: scale(1.05); }
.cart-count {
  position: absolute;
  top: -8px; right: -12px;
  background: var(--gold);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 10px;
  padding: 2px 6px;
  min-width: 18px; text-align: center;
  box-shadow: var(--shadow-sm);
}

.primary-nav {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.primary-nav .container {
  display: flex;
  justify-content: center;
  padding: 0 clamp(24px, 4vw, 64px);
}
.primary-nav ul {
  display: flex; gap: 0;
  list-style: none;
  margin: 0; padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.primary-nav a {
  display: block;
  color: var(--ink);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: var(--transition);
}
.primary-nav a:hover, .primary-nav a.active {
  background: var(--surface-card);
  color: var(--gold);
  text-decoration: none;
  box-shadow: inset 0 -2px 0 var(--gold);
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
  letter-spacing: 0.5px;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-primary { background: var(--gold); color: white; border: 1px solid var(--gold); }
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn-ghost { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-ghost:hover { background: var(--gold); color: white; }
.btn-block { width: 100%; display: block; margin-top: 12px; }
.btn-lg { padding: 15px 32px; font-size: 15px; }

.link-btn { background: none; border: 0; color: var(--gold); cursor: pointer; padding: 0; font-size: inherit; font-family: inherit; transition: var(--transition); }
.link-btn:hover { text-decoration: none; color: var(--brand-dark); }
.link-btn.danger { color: var(--danger); }
.link-btn.danger:hover { color: #e07060; }
.link-arrow { color: var(--gold); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 4px; transition: var(--transition); }
.link-arrow:hover { color: var(--brand-dark); transform: translateX(3px); }

/* === Flash messages === */
.flash-stack {
  position: fixed;
  top: 88px; right: 24px;
  z-index: 1000;
  display: flex; flex-direction: column; gap: 10px;
  max-width: 360px;
  width: 100%;
}
.flash {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 14px 18px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
  color: var(--ink);
  animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.flash-success { border-left-color: var(--success); }
.flash-error { border-left-color: var(--danger); }
.flash-close { background: none; border: 0; font-size: 20px; cursor: pointer; color: var(--muted); padding: 0 0 0 12px; transition: var(--transition); }
.flash-close:hover { color: var(--ink); }
@keyframes slideIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* === Hero — Full-bleed photo === */
.hero {
  position: relative;
  width: 100%;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* Subtle scale-in on load */
  animation: heroZoomIn 8s ease-out forwards;
}
@keyframes heroZoomIn {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

/* Dark-gradient overlay for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 10, 5, 0.30) 0%,
    rgba(15, 10, 5, 0.52) 50%,
    rgba(15, 10, 5, 0.72) 100%
  );
}

/* Centered content layer */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(80px, 10vh, 120px) clamp(20px, 6vw, 80px);
  max-width: 860px;
  width: 100%;
  animation: pageFadeIn 0.7s ease-out;
}

/* Eyebrow — glass pill */
.eyebrow {
  display: inline-block;
  background: rgba(200, 169, 110, 0.15);
  color: #F5D98A;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(200, 169, 110, 0.35);
  backdrop-filter: blur(4px);
}

/* Headline */
.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: 1.06;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  letter-spacing: -0.5px;
}
.hero-content .accent {
  color: #F5D98A;
}

/* Subtext */
.hero-content > p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 36px;
  max-width: 620px;
  line-height: 1.7;
}
.hero-br { display: inline; }

/* CTA buttons */
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-hero-primary {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
  padding: 15px 36px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}
.btn-hero-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  text-decoration: none;
}
.btn-hero-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 15px 36px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Stats row */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 32px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  font-size: 15px;
  font-weight: 700;
  color: #F5D98A;
  letter-spacing: 0.3px;
}
.hero-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.4px;
}

/* === Responsive Hero === */
@media (max-width: 1024px) {
  .hero { min-height: 80vh; }
  .hero-content {
    padding: clamp(60px, 8vh, 100px) clamp(20px, 5vw, 60px);
  }
}
@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .hero-content {
    padding: 64px 24px 52px;
  }
  .hero-content h1 {
    font-size: clamp(1.9rem, 7vw, 3rem);
  }
  .hero-stat { padding: 12px 20px; }
  .hero-br { display: none; }
}
@media (max-width: 480px) {
  .hero { min-height: 60vh; }
  .hero-bg-img { object-position: 60% top; }
  .hero-content {
    padding: 52px 16px 44px;
  }
  .hero-content h1 {
    font-size: clamp(1.65rem, 8vw, 2.4rem);
  }
  .hero-content > p {
    font-size: 0.95rem;
  }
  .btn-hero-primary, .btn-hero-ghost {
    padding: 13px 26px;
    font-size: 13px;
    width: 100%;
    text-align: center;
  }
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-stats { gap: 0; flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .hero-stat {
    padding: 10px 14px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    min-width: 48%;
  }
  .hero-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .hero-stat:last-child { border-bottom: none; }
}

/* === Trust bar === */
.trust-bar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 28px 0; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center;
}
.trust-grid > div {
  display: flex; flex-direction: column; gap: 6px;
  padding: 0 10px;
  border-right: 1px solid var(--border);
}
.trust-grid > div:last-child { border-right: none; }
.trust-grid strong { color: var(--gold); font-size: 15px; font-weight: 700; letter-spacing: 0.5px; }
.trust-grid span { color: var(--muted); font-size: 13px; }

/* === Section heads === */
.section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.section-head h2 { margin: 0; }

/* === Category grid === */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}
.category-card {
  display: block;
  background: var(--surface-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  color: var(--ink);
}
.category-card:hover { transform: translateY(-4px) scale(1.015); border-color: var(--gold); box-shadow: var(--shadow); text-decoration: none; }
.category-card img, .category-card .placeholder-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: var(--transition); }
.category-card:hover img { transform: scale(1.04); }
.category-card-body { padding: 18px 20px; background: var(--surface); border-top: 1px solid var(--border); }
.category-card-body h3 { font-size: 18px; margin: 0 0 6px; color: var(--gold); }
.category-card-body span { font-size: 13px; color: var(--muted); }

/* === Product grid & card === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 28px;
}
.product-card {
  display: block;
  background: var(--surface-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  color: var(--ink);
}
.product-card:hover { transform: translateY(-4px) scale(1.02); border-color: var(--gold); box-shadow: var(--shadow); text-decoration: none; }
.product-card-img { position: relative; aspect-ratio: 1; background: var(--bg); overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.placeholder-img {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--surface-card) 0%, var(--border) 100%);
  color: var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}
.placeholder-large { aspect-ratio: 1; min-height: 400px; }
.category-placeholder { font-size: 64px; }
.badge {
  position: absolute;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.badge-discount { top: 12px; left: 12px; background: var(--gold); color: white; border: 1px solid rgba(255,255,255,0.1); }
.badge-featured { top: 12px; right: 12px; background: var(--brand-dark); color: white; font-weight: 800; }
.product-card-body { padding: 18px 20px; background: var(--surface); border-top: 1px solid var(--border); }
.product-cat { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 700; }
.product-card-body h3 { font-size: 16px; margin: 6px 0 10px; line-height: 1.4; min-height: 44px; color: var(--ink); }
.price-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.price-row.big { font-size: 22px; }
.price { color: var(--gold); font-weight: 700; font-size: 17px; }
.price-row.big .price { font-size: 30px; }
.price-strike { color: var(--muted); text-decoration: line-through; font-size: 14px; }

/* === Shop layout === */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; }
.shop-filters {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  height: fit-content;
  position: sticky; top: 100px;
}
.shop-filters h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gold); border-bottom: 1px solid var(--border); padding-bottom: 8px; margin-bottom: 14px; }
.filter-list { list-style: none; padding: 0; margin: 0; }
.filter-list li { margin-bottom: 6px; }
.filter-list a {
  display: block; padding: 10px 14px;
  border-radius: 6px; color: var(--ink);
  font-size: 14px;
  transition: var(--transition);
}
.filter-list a:hover, .filter-list a.active {
  background: var(--gold);
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.page-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; flex-wrap: wrap; gap: 14px; }
.empty-state { text-align: center; padding: 72px 24px; background: var(--surface); border-radius: var(--radius); border: 1px dashed var(--border); }

.pagination { display: flex; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.pagination a {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--ink);
  font-size: 14px;
  transition: var(--transition);
}
.pagination a.active, .pagination a:hover { background: var(--gold); color: white; border-color: var(--gold); text-decoration: none; font-weight: 700; }

/* === Product detail === */
.breadcrumbs { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.breadcrumbs a { color: var(--muted); transition: var(--transition); }
.breadcrumbs a:hover { color: var(--gold); }
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.product-detail-img { background: var(--bg); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.product-detail-img img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-detail-info h1 { font-size: 34px; margin: 10px 0; color: var(--gold); }
.stock { font-size: 14px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.stock.in-stock { color: var(--success); }
.stock.out-stock { color: var(--danger); }
.description { color: var(--ink); opacity: 0.9; margin: 24px 0; line-height: 1.7; font-size: 15px; }
.add-to-cart-form { display: flex; gap: 16px; align-items: flex-end; margin: 24px 0; flex-wrap: wrap; }
.qty-input { display: flex; flex-direction: column; gap: 8px; }
.qty-input label { font-size: 13px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 700; }
.qty-input input { width: 90px; padding: 12px; border: 1px solid var(--border); border-radius: 6px; font-size: 16px; text-align: center; background: var(--bg); color: var(--ink); }
.qty-input input:focus { outline: none; border-color: var(--gold); background: white; }
.product-promise { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--muted); border-top: 1px solid var(--border); padding-top: 24px; }
.product-promise li { display: flex; align-items: center; gap: 8px; }

/* === Cart === */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 36px; }
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: grid; grid-template-columns: 100px 1fr auto; gap: 20px;
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  align-items: center;
}
.cart-item-img { width: 100px; height: 100px; border-radius: 6px; overflow: hidden; border: 1px solid var(--border); }
.cart-item-img img, .cart-item-img .placeholder-img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info h3 { font-size: 18px; margin: 0 0 8px; color: var(--gold); }
.cart-qty-form { display: flex; gap: 10px; align-items: center; margin-top: 10px; font-size: 13px; }
.cart-qty-form input { width: 72px; padding: 8px 10px; border: 1px solid var(--border); border-radius: 6px; background: var(--bg); color: var(--ink); text-align: center; }
.cart-item-actions { text-align: right; display: flex; flex-direction: column; gap: 10px; }
.cart-summary {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  height: fit-content;
  position: sticky;
  top: 100px;
}
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; color: var(--muted); }
.summary-row strong { color: var(--ink); }
.summary-row.total { font-size: 20px; padding-top: 18px; border-top: 1px solid var(--border); margin-top: 8px; color: var(--gold); font-weight: 700; }

/* === Checkout === */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 36px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.checkout-summary .checkout-items { list-style: none; padding: 0; margin: 0 0 16px; border-bottom: 1px solid var(--border); }
.checkout-summary .checkout-items li { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 700; }
.form-grid label.span-2 { grid-column: 1 / -1; }
.form-grid input, .form-grid textarea, .form-grid select {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  background: var(--bg);
  color: var(--ink);
  transition: var(--transition);
}
.form-grid input:focus, .form-grid textarea:focus, .form-grid select:focus { outline: none; border-color: var(--gold); background: white; }
.form-grid label.checkbox { flex-direction: row; align-items: center; gap: 10px; color: var(--ink); text-transform: none; font-weight: normal; letter-spacing: normal; }
.form-grid label.checkbox input { margin: 0; width: 18px; height: 18px; }

.radio-card {
  display: flex; align-items: center; gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  background: var(--surface-card);
  transition: var(--transition);
}
.radio-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.radio-card input { margin: 0; width: 18px; height: 18px; accent-color: var(--gold); }
.radio-card div { display: flex; flex-direction: column; }
.radio-card strong { color: var(--gold); }
.radio-card span { color: var(--muted); font-size: 13px; }

/* === Auth === */
.auth-section { padding: 80px 24px; }
.auth-card { max-width: 460px; margin: 0 auto; }
.auth-card label { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; font-size: 13px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 700; }
.auth-card input {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  background: var(--bg);
  color: var(--ink);
  transition: var(--transition);
}
.auth-card input:focus { outline: none; border-color: var(--gold); background: white; }

/* === Account === */
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; }
.account-sidebar h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gold); margin-bottom: 16px; border-bottom: 1px solid var(--border); padding-bottom: 6px; }
.account-sidebar ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.account-sidebar a, .account-sidebar button {
  display: block;
  padding: 12px 16px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 14px;
  transition: var(--transition);
  text-align: left;
  background: none; border: none; width: 100%; cursor: pointer; font-family: inherit;
}
.account-sidebar a:hover, .account-sidebar a.active, .account-sidebar button:hover {
  background: var(--gold); color: white; font-weight: 700; text-decoration: none;
}
.account-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 20px; margin-top: 24px; }
.card-tile {
  background: var(--surface);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: var(--transition);
}
.card-tile:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow); border-color: var(--gold); text-decoration: none; }
.card-tile-num { font-size: 38px; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', Georgia, serif; }
.card-tile-label { font-size: 14px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.account-content .card { margin-bottom: 24px; }
.account-content .card label { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; font-size: 13px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 700; }
.account-content .card input, .account-content .card select, .account-content .card textarea {
  padding: 12px 14px; border: 1px solid var(--border); border-radius: 6px; font-size: 15px;
  background: var(--bg); font-family: inherit; color: var(--ink); transition: var(--transition);
}
.account-content .card input:focus, .account-content .card select:focus, .account-content .card textarea:focus { outline: none; border-color: var(--gold); background: white; }

/* === Tables === */
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.data-table th, .data-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.data-table th { background: var(--surface); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gold); border-bottom: 2px solid var(--border); }
.data-table tbody tr { background: var(--surface-card); transition: var(--transition); }
.data-table tbody tr:hover { background: rgba(200, 169, 110, 0.04); }
.row-actions { display: flex; gap: 14px; align-items: center; }

.status {
  display: inline-block; padding: 4px 12px;
  border-radius: 20px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.6px;
}
.status-pending { background: rgba(212, 168, 70, 0.12); color: #b89430; border: 1px solid rgba(212, 168, 70, 0.2); }
.status-processing { background: rgba(92, 163, 224, 0.1); color: #4a90c8; border: 1px solid rgba(92, 163, 224, 0.2); }
.status-shipped { background: rgba(140, 114, 200, 0.1); color: #7a62b8; border: 1px solid rgba(140, 114, 200, 0.2); }
.status-delivered, .status-paid, .status-active { background: rgba(91, 158, 111, 0.1); color: #3d8a55; border: 1px solid rgba(91, 158, 111, 0.2); }
.status-cancelled, .status-failed, .status-inactive { background: rgba(212, 84, 84, 0.1); color: #c44040; border: 1px solid rgba(212, 84, 84, 0.2); }
.status-refunded { background: rgba(160, 100, 200, 0.1); color: #8a62c0; border: 1px solid rgba(160, 100, 200, 0.2); }

.pill { display: inline-block; padding: 3px 10px; border-radius: var(--radius); background: var(--bg); border: 1px solid var(--border); font-size: 11px; text-transform: uppercase; letter-spacing: 0.6px; color: var(--muted); }
.pill-admin { background: var(--gold); color: white; border-color: var(--gold); font-weight: 700; }

.order-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; margin-bottom: 24px; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 36px; }

.lead { font-size: 18px; color: var(--muted); margin-bottom: 28px; line-height: 1.7; }

/* === Testimonials === */
.testimonials {
  background: var(--surface-card);
  color: var(--ink);
  padding: 80px 0;
  margin-top: 60px;
  border-top: 1px solid var(--border);
}
.testimonials h2 { color: var(--gold); text-align: center; margin-bottom: 48px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.testimonial-grid blockquote {
  margin: 0; padding: 32px;
  background: var(--surface);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-grid blockquote:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--gold); }
.testimonial-grid blockquote p { margin: 0 0 16px; font-style: italic; color: var(--ink); opacity: 0.95; line-height: 1.7; font-size: 15px; }
.testimonial-grid blockquote cite { color: var(--gold); font-size: 13px; font-style: normal; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }

/* === Footer === */
.site-footer { background: var(--surface-card); color: var(--muted); margin-top: 80px; border-top: 1px solid var(--border); width: 100%; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  width: 100%;
  padding: clamp(64px, 6vw, 84px) clamp(24px, 4vw, 64px) clamp(40px, 4vw, 56px);
}
.footer-grid h4 { color: var(--gold); font-family: 'Playfair Display', Georgia, serif; font-size: 16px; margin-bottom: 18px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a { color: var(--muted); font-size: 14px; transition: var(--transition); }
.footer-grid a:hover { color: var(--gold); text-decoration: none; padding-left: 3px; }
.footer-grid p { font-size: 14px; line-height: 1.7; color: var(--muted); }
.footer-bottom { border-top: 1px solid var(--border); padding: clamp(20px, 2vw, 28px) 0; font-size: 13px; color: var(--muted); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding: 0 clamp(24px, 4vw, 64px); }
.footer-bottom a { color: var(--muted); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* === Responsive === */
@media (max-width: 1050px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    padding: 72px 18px;
  }
  .hero-art {
    min-height: 320px;
  }
  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
  .hero-grid > div:nth-child(2),
  .hero-grid > div:nth-child(3) {
    transform: translateY(0);
  }
  .hero-text h1 {
    font-size: clamp(2.8rem, 6vw, 4.4rem);
  }
  .hero-cta {
    justify-content: center;
  }
  .header-inner { grid-template-columns: 1fr auto; gap: 16px; padding: 12px 20px; }
  .search { grid-column: 1 / -1; order: 3; max-width: 100%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .trust-grid > div { border-right: none; }
  .trust-grid > div:nth-child(odd) { border-right: 1px solid var(--border); }
  .product-detail { grid-template-columns: 1fr; padding: 24px; gap: 32px; }
  .shop-layout, .cart-layout, .checkout-layout, .account-layout { grid-template-columns: 1fr; }
  .shop-filters { position: static; width: 100%; margin-bottom: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.span-2 { grid-column: auto; }
  h1 { font-size: 32px; }
  .cart-summary { position: static; width: 100%; }
}
@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding: 56px 0;
  }
  .hero-inner {
    padding: 48px 16px 32px;
  }
  .hero-text h1 {
    font-size: clamp(2.4rem, 9vw, 3.6rem);
  }
  .hero-text p {
    margin: 0 auto 22px;
    max-width: 100%;
  }
  .hero-art {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }
  .hero-grid > div {
    min-height: 140px;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-grid > div { border-right: none !important; }
  .nav-link { font-size: 13px; }
  .header-actions { gap: 14px; }
  .primary-nav a { padding: 12px 14px; font-size: 12px; }

  /* Show mobile menu toggle on smaller screens */
  .mobile-menu-toggle {
    display: block; /* or flex, depending on desired layout */
    /* Add specific styling for your menu icon here, e.g., background-image, width, height */
  }
  .brand-name { font-size: 20px; }
}

.inline { display: inline-block; }
.inline-form { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.inline-form select { padding: 8px 12px; border: 1px solid var(--border); border-radius: 6px; font-family: inherit; background: var(--bg); color: var(--ink); }

.danger-text { color: var(--danger); font-weight: 700; }
.warn-text { color: var(--warn); font-weight: 700; }

/* ==========================
   Mobile-specific overrides
   - Only rules inside these media queries modify desktop styles
   - Breakpoints: 768px (tablet/large phones) and 480px (small phones)
   - Use relative units, flex/grid adjustments, touch-size increases
   - Images set to max-width/height auto and object-fit where appropriate
   - Keep changes minimal and focused on mobile presentation
   ========================== */

@media (max-width: 768px) {
  /* Header / Nav: stack into single column and increase touch targets */
  .header-inner { grid-template-columns: 1fr auto; gap: 12px; padding: 12px 16px; align-items: center; }
  .brand-name { font-size: 1.25rem; }
  .brand-logo { width: 96px; height: 52px; }
  .search { width: 100%; order: 3; }
  .search input { padding: 12px 14px; font-size: 1rem; }
  .search button { padding: 0 18px; font-size: 16px; }
  .header-actions { width: 100%; justify-content: flex-end; gap: 12px; }
  .primary-nav .container { padding: 0 16px; }
  .primary-nav a { padding: 12px 10px; font-size: 13px; }

  .primary-nav .nav-category-item {
    display: none;
  }
  /* Hero: collapse grids, reduce paddings and scale typography */
  .hero { min-height: auto; padding: 40px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 20px; padding: 48px 16px; }
  .hero-text h1 { font-size: clamp(1.6rem, 6vw, 2.8rem); line-height: 1.08; }
  .hero-text p { font-size: 1rem; margin-bottom: 18px; }
  .hero-grid { grid-template-columns: 1fr; gap: 14px; width: 100%; }
  .hero-grid > div { border-radius: 12px; padding: 14px; }
  .hero-art { min-height: 200px; }

  /* Grids & Cards: single-column flow and reduced gaps */
  .trust-grid, .stat-grid, .testimonial-grid, .product-list, .admin-grid {
    grid-template-columns: 1fr; gap: 14px;
  }
  .stat-card, .testimonial-grid blockquote, .product-card, .card { padding: 16px; }

  /* Images / Media */
  img, .hero-art img, .product-thumb { max-width: 100%; height: auto; display: block; object-fit: cover; }
  .hero-circle { width: 220px; height: 220px; filter: blur(30px); }

  /* Typography: scale down and use rem units */
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.25rem; }
  p, .muted, .footer-grid p { font-size: 0.95rem; }

  /* Forms & Buttons: larger touch targets, full width where appropriate */
  .btn, .search button, .link-btn { min-height: 44px; padding: 12px 18px; font-size: 15px; }
  .btn-block { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }

  /* Footer: compact single column and reduced padding */
  .footer-grid { grid-template-columns: 1fr; gap: 18px; padding: 32px 16px 20px; }
  .footer-bottom .container { padding: 0 16px; gap: 8px; }

  /* Flash and overlays: reposition for mobile */
  .flash-stack { top: 80px; right: 12px; max-width: calc(100% - 24px); }
  .admin-login-label { display: none; }
}

@media (max-width: 480px) {
  /* Further reductions for small phones */
  .header-inner { padding: 10px 12px; gap: 8px; }
  .brand-name { font-size: 1.05rem; }
  .brand-logo { width: 84px; height: 52px; }

  .hero-inner { padding: 28px 12px; gap: 12px; }
  .hero-text h1 { font-size: 1.4rem; }
  .hero-text p { font-size: 0.95rem; }

  /* Buttons larger for thumb interaction */
  .btn, .search button { padding: 14px 18px; font-size: 1rem; border-radius: 10px; }

  /* Reduce spacing site-wide */
  .section { padding: clamp(20px, 4vw, 36px) 0; }
  .container { padding-left: 12px; padding-right: 12px; }

  /* Images: ensure no overflow and good aspect handling */
  picture, img { max-width: 100%; height: auto; display: block; }

  /* Footer compact */
  .footer-grid { text-align: center; padding: 24px 12px 16px; }

  /* Ensure admin-specific panels also respect mobile touch sizes */
  .admin-topbar { padding: 12px 12px; }
  .admin-toggle { width: 44px; height: 44px; }

/* ===================================================
   VISIT US — Home page section
   =================================================== */
.visit-us {
  \\on same page to avoid unnecessary scrolling
  background: var(--surface-card);
  border-top: 1px solid var(--border);
  padding: 80px 0;
  margin-top: 60px;
}
.visit-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.visit-us-info .eyebrow { margin-bottom: 12px; }
.visit-us-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 16px;
    color: var(--gold);   
}
  background: var(--surface-card);
  border-top: 1px solid var(--border);
  padding: 80px 0;
  margin-top: 60px;
}
.visit-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.visit-us-info .eyebrow { margin-bottom: 12px; }
.visit-us-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  color: var(--gold);
}
.visit-us-info > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}
.visit-address {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-style: normal;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.visit-address-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.visit-hours {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.visit-hours-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.visit-hours strong { color: var(--gold); }
.closed-note { color: var(--muted); font-size: 13px; }
.visit-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 28px;
}
.stars { color: #f5a623; font-size: 18px; letter-spacing: 1px; }
.visit-rating strong { color: var(--gold); font-size: 17px; }
.review-count { color: var(--muted); font-size: 13px; }
.visit-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.visit-us-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  line-height: 0;
}
.visit-us-map iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ===================================================
   CONTACT PAGE — Enhanced styles
   =================================================== */
.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
  margin-top: 32px;
}

.contact-info-column .contact-grid {
  margin-top: 0;
  margin-bottom: 32px;
}

.contact-info-column .map-section {
  margin-top: 0;
}

.enquiry-column .enquiry-section {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

@media (max-width: 1024px) {
  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.contact-card { display: flex; flex-direction: column; gap: 12px; }
.contact-card-icon { font-size: 28px; margin-bottom: 4px; }
.contact-card h3 { color: var(--gold); font-size: 18px; margin: 0; }
.contact-card address { font-style: normal; color: var(--ink); font-size: 14px; line-height: 1.8; }
.contact-card a { color: var(--gold); transition: var(--transition); }
.contact-card a:hover { color: var(--brand-dark); text-decoration: underline; }
.contact-rating {
  display: flex; align-items: center; gap: 7px;
  font-size: 14px; flex-wrap: wrap;
}
.contact-rating .stars { font-size: 16px; }
.contact-rating strong { color: var(--gold); }
.contact-rating a { font-size: 13px; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.hours-table td { padding: 7px 0; border-bottom: 1px solid var(--border); color: var(--ink); }
.hours-table td:first-child { font-weight: 600; color: var(--gold); width: 120px; }
.hours-table .closed-day td { color: var(--muted); font-style: italic; }
.hours-table .closed-day td:first-child { color: var(--muted); }
.map-section { margin-top: 56px; }
.map-section h2 { color: var(--gold); margin-bottom: 20px; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.map-embed-wrapper { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); line-height: 0; }
.map-embed-wrapper iframe { display: block; width: 100%; }
.map-directions { margin-top: 18px; }

/* ===================================================
   RESPONSIVE — visit-us & contact
   =================================================== */
@media (max-width: 1050px) {
  .visit-us-grid { grid-template-columns: 1fr; gap: 36px; }
  .visit-us-map iframe { height: 360px; }
}
@media (max-width: 768px) {
  .visit-us { padding: 52px 0; }
  .visit-us-info h2 { font-size: 1.6rem; }
  .visit-us-map iframe { height: 280px; }
  .visit-cta { flex-direction: column; }
  .visit-cta a { width: 100%; text-align: center; }
  .map-section h2 { font-size: 1.3rem; }
  .map-embed-wrapper iframe { height: 280px; } 
  /* Adjust lead paragraph font size for better readability on smaller screens */
  .lead {
    font-size: 1rem; /* Approximately 16px */
  }
}
@media (max-width: 480px) {
  .visit-address, .visit-hours { padding: 14px 16px; }
  .hours-table td { font-size: 13px; }
}

/* ===================================================
   RESPONSIVE — contact page specific adjustments
   =================================================== */
@media (max-width: 480px) {
  /* Further adjust lead paragraph font size for very small screens */
  .lead {
    font-size: 0.95rem; /* Approximately 15.2px */
  }
}

/* ===================================================
   ENQUIRY FORM
   =================================================== */
.enquiry-section {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}
.enquiry-section h2 {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.enquiry-card {
  margin-top: 30px;
  padding: 40px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
}
.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-grid input:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.form-grid .span-2 {
  grid-column: 1 / -1;
}

/* ===================================================
   FLOATING ACTIONS
   =================================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 9999;
  pointer-events: none;
}
.floating-actions > * {
  pointer-events: auto;
}
.right-floating {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  text-decoration: none !important;
  border-radius: 50px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.floating-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  color: #ffffff;
}
.floating-btn.whatsapp {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
}
.floating-btn.whatsapp svg {
  width: 34px;
  height: 34px;
}
.right-floating .floating-btn {
  padding: 10px 24px 10px 20px;
  gap: 14px;
  min-width: 170px;
}
.right-floating .get-quote {
  background-color: #084177; /* Deep Blue */
}
.right-floating .talk-to-team {
  background-color: #106b3a; /* Deep Green */
}
.floating-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.floating-text .small {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.9;
  line-height: 1.2;
}
.floating-text .large {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .enquiry-card {
    padding: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .floating-actions {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
  .floating-btn.whatsapp {
    width: 52px;
    height: 52px;
  }
  .floating-btn.whatsapp svg {
    width: 30px;
    height: 30px;
  }
  .right-floating {
    gap: 10px;
  }
  .right-floating .floating-btn {
    padding: 8px 18px 8px 14px;
    gap: 10px;
    min-width: 140px;
  }
  .floating-text .small {
    font-size: 8.5px;
  }
  .floating-text .large {
    font-size: 12px;
  }
}
