/* ============================================================
   JOULE WALL ART — Premium Catalogue Website
   styles.css
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Palette */
  --cream:        #FAF8F3;
  --cream-dark:   #F2EDE4;
  --charcoal:     #1A1A18;
  --charcoal-mid: #2E2E2A;
  --charcoal-soft:#4A4A44;
  --gold:         #C8A84B;
  --gold-light:   #E8C96A;
  --gold-pale:    #F5E9C4;
  --white:        #FFFFFF;
  --divider:      rgba(26,26,24,0.10);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --gutter:    clamp(1rem, 4vw, 2rem);
  --section-v: clamp(3.5rem, 8vw, 7rem);

  /* Effects */
  --shadow-card:  0 2px 20px rgba(26,26,24,0.07), 0 8px 30px rgba(26,26,24,0.05);
  --shadow-hover: 0 12px 40px rgba(26,26,24,0.14), 0 4px 16px rgba(26,26,24,0.08);
  --radius:       4px;
  --radius-lg:    8px;
  --transition:   all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::selection { background: var(--gold-pale); color: var(--charcoal); }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Layout Utilities ── */
.container {
  width: min(100%, 1260px);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-pad { padding-block: var(--section-v); }

.text-center { text-align: center; }

/* ── Divider ── */
.gold-divider {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  margin: 1rem auto;
}

/* ──────────────────────────────────────────────
   HEADER / NAV
────────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250,248,243,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
  transition: box-shadow 0.3s ease;
}

#site-header.scrolled { box-shadow: 0 2px 20px rgba(26,26,24,0.08); }

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

/* Logo & Search Wrapper */
.logo-search-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.nav-logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--charcoal);
}

/* Search Bar */
.nav-search {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 300px;
  width: 100%;
}

.nav-search input {
  width: 100%;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  background: var(--cream-dark);
  border: 1px solid var(--divider);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--charcoal);
  transition: var(--transition);
}

.nav-search input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.1);
}

.nav-search button {
  position: absolute;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-soft);
  transition: color 0.2s;
}

.nav-search button:hover {
  color: var(--gold);
}

@media (max-width: 992px) {
  .logo-search-wrapper { gap: 1rem; }
  .nav-search { max-width: 200px; }
}

@media (max-width: 768px) {
  .nav-search { display: none; } /* Hide on mobile to avoid clutter, can be added to drawer if needed */
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal-soft);
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--charcoal); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* CTA Button in Nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: var(--charcoal);
  color: var(--cream) !important;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold); color: var(--charcoal) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 4px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--cream-dark); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav Drawer */
.nav-mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
}
.nav-mobile-drawer.open { display: block; }

.nav-mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,24,0.5);
}

.nav-mobile-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: var(--cream);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.nav-mobile-drawer.open .nav-mobile-panel { transform: translateX(0); }

.nav-mobile-close {
  align-self: flex-end;
  font-size: 1.5rem;
  color: var(--charcoal-soft);
  line-height: 1;
  margin-bottom: 1rem;
}
.nav-mobile-panel a {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--divider);
  font-size: 1.1rem;
  font-family: var(--font-display);
  color: var(--charcoal);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-mobile-panel a:hover { color: var(--gold); padding-left: 0.5rem; }

/* ──────────────────────────────────────────────
   HERO SECTION
────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--section-v) var(--gutter) var(--section-v) max(var(--gutter), calc((100vw - 1260px)/2 + var(--gutter)));
  color: var(--cream);
  animation: heroFadeIn 1s 0.2s both;
}

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

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 1.4rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(250,248,243,0.72);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Image Panel */
.hero-image-panel {
  position: relative;
  height: 100%;
  min-height: min(92vh, 760px);
  overflow: hidden;
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
  transition: transform 8s ease;
}

.hero-image-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--charcoal) 0%, transparent 40%);
  z-index: 1;
}

/* Price Badges */
.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 3;
  background: rgba(250,248,243,0.95);
  backdrop-filter: blur(8px);
  padding: 1rem 1.4rem;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(26,26,24,0.2);
  animation: heroFadeIn 1s 0.7s both;
}

.hero-badge-label { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--charcoal-soft); text-transform: uppercase; }
.hero-badge-price { font-family: var(--font-display); font-size: 1.8rem; color: var(--charcoal); }
.hero-badge-price span { font-size: 0.9rem; color: var(--gold); }

/* ──────────────────────────────────────────────
   BUTTONS
────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,168,75,0.3);
}

.btn-outline-light {
  border: 1.5px solid rgba(250,248,243,0.4);
  color: var(--cream);
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,168,75,0.06);
}

.btn-outline {
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-outline-dark {
  border: 1.5px solid var(--cream);
  color: var(--cream);
}
.btn-outline-dark:hover {
  background: var(--cream);
  color: var(--charcoal);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--charcoal-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,26,24,0.2);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* ──────────────────────────────────────────────
   MARQUEE STRIP
────────────────────────────────────────────── */
.marquee-strip {
  background: var(--charcoal);
  overflow: hidden;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(250,248,243,0.06);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,248,243,0.5);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.marquee-track span::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.55rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────────
   STATS BAR
────────────────────────────────────────────── */
.stats-bar {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--divider);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 2.5rem 0;
}

.stat-item {
  text-align: center;
  padding: 0 1.5rem;
  border-right: 1px solid var(--divider);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-number span { color: var(--gold); }

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

/* ──────────────────────────────────────────────
   CATEGORY SECTION
────────────────────────────────────────────── */
#categories { background: var(--cream); }

.section-header { margin-bottom: 3rem; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.category-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--cream-dark);
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.category-card:hover .category-card-image img { transform: scale(1.04); }

.category-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

.category-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.category-size-hint {
  font-size: 0.75rem;
  color: var(--charcoal-soft);
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
}

.category-desc {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.2rem;
}

.category-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1.2rem;
}

.price-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--charcoal-soft); }
.price-value { font-family: var(--font-display); font-size: 1.6rem; color: var(--charcoal); }
.price-currency { font-size: 0.85rem; }

.category-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.category-link:hover { gap: 0.7rem; }
.category-link::after { content: '→'; }

/* ──────────────────────────────────────────────
   CATALOGUE SECTION
────────────────────────────────────────────── */
#collection { background: var(--cream-dark); }

/* Toolbar */
.catalogue-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.search-box {
  position: relative;
  flex: 1 1 240px;
  min-width: 200px;
}

.search-box svg {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--charcoal-soft);
  pointer-events: none;
}

#search-input {
  width: 100%;
  padding: 0.72rem 1rem 0.72rem 2.6rem;
  background: var(--white);
  border: 1.5px solid var(--divider);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
}

#search-input:focus { border-color: var(--gold); }
#search-input::placeholder { color: var(--charcoal-soft); opacity: 0.6; }

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-pill {
  padding: 0.55rem 1.1rem;
  border: 1.5px solid var(--divider);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  background: var(--white);
  transition: var(--transition);
}

.filter-pill:hover { border-color: var(--gold); color: var(--charcoal); }
.filter-pill.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--cream);
}

.sort-select {
  padding: 0.6rem 1rem;
  border: 1.5px solid var(--divider);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--charcoal);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.sort-select:focus { border-color: var(--gold); }

/* Results Count */
.catalogue-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.results-count {
  font-size: 0.82rem;
  color: var(--charcoal-soft);
}
.results-count strong { color: var(--charcoal); }

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

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  animation: cardFadeIn 0.4s ease both;
}

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

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.product-card:hover .product-image-wrap img { transform: scale(1.05); }

/* Fallback for missing images */
.product-image-wrap .img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-soft);
  gap: 0.5rem;
  font-size: 0.8rem;
  opacity: 0;
  background: var(--cream-dark);
  transition: opacity 0.3s;
}
.product-image-wrap img.error { opacity: 0; }
.product-image-wrap img.error + .img-fallback { opacity: 1; }

.product-category-tag {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tag-small    { background: var(--cream); color: var(--charcoal-soft); }
.tag-office   { background: var(--gold-pale); color: var(--charcoal); }
.tag-statement{ background: var(--charcoal); color: var(--cream); }

.product-quick-view {
  position: absolute;
  inset: 0;
  background: rgba(26,26,24,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .product-quick-view { opacity: 1; }

.quick-view-btn {
  background: var(--cream);
  color: var(--charcoal);
  padding: 0.6rem 1.2rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.quick-view-btn:hover { background: var(--gold); }

.product-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.3rem;
  color: var(--charcoal);
}

.product-theme {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-soft);
  margin-bottom: 0.9rem;
}

/* Size Selector */
.size-selector { margin-bottom: 1rem; }
.size-selector-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 0.5rem;
  display: block;
}

.size-options {
  display: flex;
  gap: 0.4rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.size-options::-webkit-scrollbar {
  display: none;
}

.size-option {
  padding: 0.3rem 0.65rem;
  border: 1.5px solid var(--divider);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal-soft);
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
}
.size-option:hover { border-color: var(--gold); color: var(--charcoal); }
.size-option.selected {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--cream);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid var(--divider);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
}

.product-price .price-label {
  font-size: 0.7rem;
  font-family: var(--font-body);
  color: var(--charcoal-soft);
  display: block;
  line-height: 1.2;
}

.enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  background: #25D366;
  color: #fff;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
}
.enquire-btn:hover {
  background: #20bd5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

/* Empty State */
.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 1rem;
  color: var(--charcoal-soft);
}
.empty-state h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--charcoal); }
.empty-state p { font-size: 0.9rem; }

/* ──────────────────────────────────────────────
   PRODUCT MODAL
────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(26,26,24,0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: min(900px, 96vw);
  max-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-image-panel {
  position: relative;
  background: var(--cream-dark);
  overflow: hidden;
}
.modal-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.modal-content-panel {
  padding: 2.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(250,248,243,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--charcoal);
  z-index: 2;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--cream); }

.modal-category-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.modal-theme {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-soft);
  margin-bottom: 1.2rem;
}

.modal-divider {
  height: 1px;
  background: var(--divider);
  margin-bottom: 1.2rem;
}

.modal-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--charcoal-soft);
  margin-bottom: 1.5rem;
}

.modal-size-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 0.6rem;
  display: block;
}

.modal-size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.modal-size-btn {
  padding: 0.6rem;
  border: 1.5px solid var(--divider);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--charcoal-soft);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}
.modal-size-btn:hover { border-color: var(--gold); color: var(--charcoal); }
.modal-size-btn.selected {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--cream);
}
.modal-size-btn .size-price {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-top: 0.15rem;
  color: var(--gold);
}
.modal-size-btn.selected .size-price { color: var(--gold-light); }

.modal-current-price {
  margin-bottom: 1.5rem;
}
.modal-current-price .price-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--charcoal-soft); }
.modal-current-price .price-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--charcoal);
  line-height: 1.1;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: auto;
}

.modal-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: var(--transition);
}
.modal-wa-btn:hover { background: #20bd5a; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }

.modal-mail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem;
  border: 1.5px solid var(--divider);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  transition: var(--transition);
}
.modal-mail-btn:hover { border-color: var(--charcoal); color: var(--charcoal); }

/* ──────────────────────────────────────────────
   WHY CHOOSE US / ABOUT
────────────────────────────────────────────── */
#about { background: var(--charcoal); color: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-eyebrow { color: var(--gold); }
.about-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.about-title em { color: var(--gold-light); font-style: italic; }

.about-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(250,248,243,0.72);
  margin-bottom: 2rem;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(200,168,75,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.feature-text h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.feature-text p {
  font-size: 0.78rem;
  color: rgba(250,248,243,0.55);
  line-height: 1.5;
}

/* About image mosaic */
.about-image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.8rem;
}

.mosaic-img {
  border-radius: var(--radius);
  overflow: hidden;
}
.mosaic-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.mosaic-img:hover img { transform: scale(1.04); }
.mosaic-img.tall { grid-row: span 2; }
.mosaic-img.tall img { height: 100%; min-height: 410px; }

/* ──────────────────────────────────────────────
   CONTACT SECTION
────────────────────────────────────────────── */
#contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-title {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.contact-info-subtitle {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.contact-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.contact-item-icon {
  width: 42px; height: 42px;
  background: var(--charcoal);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--gold-light);
}

.contact-item-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-soft);
  margin-bottom: 0.2rem;
}

.contact-item-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.5;
}

.contact-item-value a {
  color: inherit;
  transition: color 0.2s;
}
.contact-item-value a:hover { color: var(--gold); }

/* Contact CTA Card */
.contact-cta-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--cream);
}

.contact-cta-card .eyebrow { color: var(--gold); margin-bottom: 0.8rem; }

.contact-cta-card h3 {
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.contact-cta-card p {
  font-size: 0.88rem;
  color: rgba(250,248,243,0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-cta-buttons { display: flex; flex-direction: column; gap: 0.8rem; }

/* ──────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────── */
#site-footer {
  background: var(--charcoal-mid);
  color: rgba(250,248,243,0.7);
  border-top: 1px solid rgba(250,248,243,0.06);
}

.footer-main {
  padding: 3.5rem 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 1rem; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-logo img { width: 38px; height: 38px; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 220px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(250,248,243,0.55);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 0.3rem; }

.footer-contact-info { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact-item {
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(250,248,243,0.55);
}
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-label {
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.15rem;
  display: block;
}

.footer-bottom {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(250,248,243,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p { font-size: 0.75rem; }

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a { font-size: 0.75rem; color: rgba(250,248,243,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ──────────────────────────────────────────────
   FLOATING WHATSAPP BUTTON
────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.15);
  transition: var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
  animation: none;
}

.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.15), 0 0 0 0 rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 4px 16px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.15), 0 0 0 10px rgba(37,211,102,0); }
}

/* ──────────────────────────────────────────────
   SCROLL ANIMATIONS
────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ──────────────────────────────────────────────
   LOADING SKELETON
────────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--cream-dark) 25%, var(--cream) 50%, var(--cream-dark) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius);
}

@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* ──────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1/-1; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-mosaic { order: -1; }
  .mosaic-img.tall img { min-height: 260px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 3.5rem var(--gutter) 2rem;
  }
  .hero-image-panel {
    min-height: 45vw;
    max-height: 360px;
  }
  .hero-image-panel::before {
    background: linear-gradient(0deg, rgba(26,26,24,0.4) 0%, transparent 60%);
  }
  .hero-badge { display: none; }

  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--divider); border-top: 1px solid var(--divider); }
  .stat-item:last-child   { border-top: 1px solid var(--divider); }

  .categories-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

  .modal { grid-template-columns: 1fr; max-height: 95vh; }
  .modal-image-panel { max-height: 280px; }
  .modal-image-panel img { min-height: 280px; }
  .modal-content-panel { max-height: 60vh; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }

  .catalogue-toolbar { flex-direction: column; align-items: stretch; }
  .search-box { min-width: auto; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .features-list { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .modal-size-grid { grid-template-columns: 1fr 1fr; }
}
