/* ============================================================
   Lucky JB Furniture — Design System
   Brand: #754c28 (wood brown) · #231f20 (near black)
   ============================================================ */

:root {
  --brown:     #754c28;
  --brown-light: #9e6a3a;
  --brown-dark:  #5a3a1e;
  --black:     #231f20;
  --bg:        #0e0c0b;
  --bg-card:   #181410;
  --bg-card2:  #1e1a16;
  --border:    rgba(117,76,40,.25);
  --border-glow: rgba(117,76,40,.6);
  --text:      #f0ebe4;
  --text-muted:#9a8f84;
  --text-dim:  #6a5f55;
  --white:     #ffffff;
  --radius:    12px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --shadow:    0 4px 24px rgba(0,0,0,.5);
  --shadow-hover: 0 12px 40px rgba(0,0,0,.7), 0 0 0 1px var(--border-glow);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--brown); border-radius: 3px; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

/* ── Top Bar ── */
.topbar {
  background: #060504;
  border-bottom: 1px solid rgba(117,76,40,.12);
  font-size: .72rem;
  letter-spacing: .07em;
  color: var(--text-dim);
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: .45rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.topbar-item svg { width: 12px; height: 12px; opacity: .6; flex-shrink: 0; }
.topbar-socials { margin-left: auto; display: flex; gap: .5rem; align-items: center; }
.topbar-socials a {
  color: var(--text-dim);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  padding: .2rem;
}
.topbar-socials a svg { width: 13px; height: 13px; }
.topbar-socials a:hover { color: var(--brown-light); }
.topbar-divider {
  width: 1px; height: 12px;
  background: rgba(117,76,40,.2);
  flex-shrink: 0;
}

/* ── Header / Nav ── */
.site-header {
  background: rgba(8,6,4,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(117,76,40,.18);
  position: sticky;
  top: 30px;
  z-index: 90;
  transition: box-shadow .4s ease, border-color .4s ease;
}
.site-header.scrolled {
  box-shadow: 0 8px 48px rgba(0,0,0,.75);
  border-bottom-color: rgba(117,76,40,.32);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: stretch;
  min-height: 62px;
}
.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-right: 2rem;
  border-right: 1px solid rgba(117,76,40,.18);
}
.logo-img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,.7));
}

/* thin rule between logo and links */
.nav-sep { display: none; }

/* ── Nav links list ── */
.nav-links {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-left: auto;
  padding-left: 1rem;
}

.nav-links li {
  display: flex;
  align-items: center;
  position: relative;
}

/* Dot separator · between items (not before first, not before cart) */
.nav-links li + li:not(.nav-cart-li)::before {
  content: '·';
  color: rgba(117,76,40,.35);
  font-size: .9rem;
  line-height: 1;
  pointer-events: none;
}

.nav-links a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .04em;
  color: rgba(210,195,178,.5);
  padding: 0 .7rem;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: color .22s ease;
  background: none !important;
  border-radius: 0 !important;
  white-space: nowrap;
}

/* Bottom bar indicator */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: .7rem; right: .7rem;
  height: 2px;
  background: linear-gradient(90deg, #9e6a3a, #c8a060);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}

.nav-links a:hover {
  color: rgba(230,218,200,.85);
}
.nav-links a:hover::after { transform: scaleX(1); }

/* Active — upright (non-italic), warm gold, bar always showing */
.nav-links a.active {
  font-style: normal;
  font-weight: 600;
  color: #c8a060;
}
.nav-links a.active::after {
  transform: scaleX(1);
}

/* ── Cart — stands apart as a CTA ── */
.nav-cart-li {
  margin-left: 1.25rem;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(117,76,40,.18);
  align-items: center;
}
.nav-cart-li::before { display: none !important; }

.cart-btn {
  display: flex !important;
  align-items: center;
  gap: .45rem;
  background: rgba(117,76,40,.12) !important;
  border: 1px solid rgba(117,76,40,.45) !important;
  color: #b8904a !important;
  padding: .5rem 1.1rem !important;
  border-radius: 4px !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  font-style: normal !important;
  letter-spacing: .06em !important;
  transition: all .25s ease !important;
  height: auto !important;
  white-space: nowrap;
}
.cart-btn::after { display: none !important; }
.cart-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.cart-btn:hover {
  background: rgba(117,76,40,.25) !important;
  border-color: #9e6a3a !important;
  color: #c8a060 !important;
}
.cart-count {
  background: #754c28;
  color: #fff;
  border-radius: 50%;
  min-width: 17px; height: 17px;
  font-size: .63rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-style: normal;
}

/* ── Hamburger ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: .5rem;
  margin-left: auto;
  align-self: center;
}
.menu-toggle span {
  display: block;
  width: 20px; height: 1px;
  background: rgba(210,195,178,.6);
  transition: var(--transition);
}
.menu-toggle span:first-child { width: 14px; }
.menu-toggle span:last-child  { width: 17px; }

/* ── Hero ── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 60%, rgba(117,76,40,.2) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(117,76,40,.1) 0%, transparent 50%),
              var(--bg);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60L60 0' stroke='rgba(117,76,40,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

/* ── Hero background image slideshow ── */
.hero-bg-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
@keyframes kenBurns {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-bg-slide.active {
  opacity: 1;
  animation: kenBurns 8s ease-out forwards;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(14,12,11,.92) 0%,
    rgba(14,12,11,.80) 38%,
    rgba(14,12,11,.45) 70%,
    rgba(14,12,11,.25) 100%
  );
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 6;
}
.hero-text { max-width: 640px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(117,76,40,.15);
  border: 1px solid var(--border);
  color: var(--brown-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--text); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--brown); font-style: italic; }
.hero-desc { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2rem; max-width: 480px; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--brown);
  color: var(--white);
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  border: 2px solid var(--brown);
}
.btn-primary:hover { background: var(--brown-light); border-color: var(--brown-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(117,76,40,.4); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--text);
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--brown); color: var(--brown-light); transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--brown); font-weight: 700; }
.stat-label { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }

/* Hero image side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
}
.hero-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-img-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--bg-card2) 0%, rgba(117,76,40,.15) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-dim);
  font-size: 4rem;
}
.hero-badge-float {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.hero-badge-float .hbf-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--brown); font-weight: 700; }
.hero-badge-float .hbf-text { font-size: .75rem; color: var(--text-muted); }

/* ── Section Wrappers ── */
.section { padding: 5rem 0; }
.section-inner { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  color: var(--brown);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-header h2 { color: var(--text); margin-bottom: .75rem; }
.section-header p { color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ── Categories ── */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}
.cat-card:hover {
  border-color: var(--brown);
  background: rgba(117,76,40,.1);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(117,76,40,.2);
}
.cat-icon { font-size: 2rem; margin-bottom: .6rem; display: block; }
.cat-name { font-size: .85rem; color: var(--text-muted); font-weight: 500; }
.cat-card:hover .cat-name { color: var(--brown-light); }

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

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  group: true;
}
.product-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card2);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--bg-card2), rgba(117,76,40,.08));
}
.product-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--brown);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .25rem .65rem;
  border-radius: 50px;
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,12,11,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.overlay-btn {
  background: var(--white);
  color: var(--black);
  border: none;
  border-radius: 8px;
  padding: .6rem 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; gap: .4rem;
}
.overlay-btn:hover { background: var(--brown); color: var(--white); }
.overlay-btn.wa { background: #25d366; color: var(--white); }
.overlay-btn.wa:hover { background: #1da851; }

.product-info { padding: 1.25rem; }
.product-cat { font-size: .72rem; color: var(--brown-light); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .4rem; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--text); margin-bottom: .5rem; line-height: 1.3; }
.product-desc { font-size: .82rem; color: var(--text-muted); margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.product-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--brown); font-weight: 700; }
.add-to-cart {
  background: var(--brown);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: .55rem 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; gap: .35rem;
  white-space: nowrap;
}
.add-to-cart:hover { background: var(--brown-light); }
.add-to-cart svg { width: 14px; height: 14px; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-muted);
  grid-column: 1/-1;
}
.empty-state .empty-icon { font-size: 4rem; margin-bottom: 1rem; opacity: .4; }

/* ── Shop Page ── */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; align-items: start; }
.filter-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 110px;
}
.filter-sidebar h3 { font-size: 1rem; color: var(--text); margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.filter-label { font-size: .8rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .6rem; }
.filter-list { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.5rem; }
.filter-item {
  padding: .55rem .85rem;
  border-radius: 8px;
  font-size: .87rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; gap: .5rem;
}
.filter-item:hover, .filter-item.active { background: rgba(117,76,40,.15); color: var(--brown-light); }
.filter-item.active { font-weight: 600; }

.shop-header-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem;
}
.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: .5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .55rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.filter-toggle-btn:hover { border-color: var(--brown); color: var(--brown-light); }
.results-count { color: var(--text-muted); font-size: .88rem; }
.search-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .6rem 1rem;
  color: var(--text);
  font-size: .88rem;
  font-family: inherit;
  width: 220px;
  transition: border-color var(--transition);
}
.search-input:focus { outline: none; border-color: var(--brown); }
.search-input::placeholder { color: var(--text-dim); }

/* ── Cart ── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; }
.cart-table { width: 100%; }
.cart-items-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .75rem;
}
.cart-items-count { font-size: .85rem; color: var(--text-muted); }
.clear-cart-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: none; border: 1px solid rgba(229,62,62,.35);
  color: #e06060; padding: .35rem .8rem; border-radius: var(--radius-sm);
  font-size: .8rem; cursor: pointer; transition: background .2s, border-color .2s;
}
.clear-cart-btn:hover { background: rgba(229,62,62,.1); border-color: rgba(229,62,62,.6); }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 1rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
}
.cart-item-img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bg-card2);
}
.cart-item-name { font-weight: 600; color: var(--text); font-size: .95rem; }
.cart-item-price { color: var(--brown); font-weight: 700; white-space: nowrap; }
.qty-control { display: flex; align-items: center; gap: .5rem; }
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.qty-btn:hover { background: var(--brown); border-color: var(--brown); }
.qty-num { font-weight: 600; min-width: 24px; text-align: center; }
.remove-btn { color: var(--text-dim); cursor: pointer; transition: color var(--transition); padding: .25rem; }
.remove-btn:hover { color: #e53e3e; }

.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 110px;
}
.cart-summary h3 { font-size: 1.2rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; margin-bottom: .75rem; font-size: .9rem; }
.summary-total { font-size: 1.1rem; font-weight: 700; color: var(--brown); }
.summary-divider { border: none; border-top: 1px solid var(--border); margin: 1rem 0; }
.wa-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  background: #25d366;
  color: var(--white);
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 1rem;
  text-decoration: none;
}
.wa-checkout-btn:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }

/* ── Gallery ── */
.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(14,12,11,.9));
  color: var(--text);
  padding: 1.5rem 1rem .75rem;
  font-size: .82rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: var(--white); font-size: 2rem; cursor: pointer;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1); border-radius: 50%;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }

/* ── About Page ── */
.about-hero { padding: 6rem 0 4rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ceo-img-wrap { position: relative; }

/* Photo frame — warm cream so mix-blend-mode: multiply kills the white bg */
.ceo-photo-frame {
  position: relative;
  background: #ede8e1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 28px 65px rgba(0,0,0,.55), inset 0 0 0 1px rgba(200,160,96,.15);
  isolation: isolate;
}
.ceo-img { width: 100%; display: block; }
.ceo-img--blend { mix-blend-mode: multiply; }

.ceo-corner-d {
  position: absolute;
  width: 44px; height: 44px;
  pointer-events: none;
  z-index: 2;
}
.ceo-corner-d.tl { top: -9px; left: -9px; border-top: 2px solid var(--brown); border-left: 2px solid var(--brown); }
.ceo-corner-d.tr { top: -9px; right: -9px; border-top: 2px solid rgba(117,76,40,.3); border-right: 2px solid rgba(117,76,40,.3); }

.ceo-photo-badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: rgba(10,8,6,.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200,160,96,.22);
  border-radius: 50px;
  padding: .45rem 1rem;
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.cpb-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 7px #25d366;
  flex-shrink: 0;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 6px #25d366; }
  50%      { box-shadow: 0 0 14px #25d366, 0 0 4px #25d366; }
}

.ceo-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--bg-card2), rgba(117,76,40,.2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
}
.ceo-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 120px; height: 120px;
  background: var(--brown);
  border-radius: var(--radius);
  z-index: -1;
  opacity: .4;
}
.ceo-name { font-size: 2.5rem; color: var(--text); margin-bottom: .25rem; }
.ceo-title { color: var(--brown); font-size: .9rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.5rem; }
.ceo-bio { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--brown); transform: translateY(-3px); }
.value-icon { font-size: 2rem; margin-bottom: .75rem; }
.value-title { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; }
.value-desc { font-size: .85rem; color: var(--text-muted); }

/* ── Contact Page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.form-control {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .75rem 1rem;
  color: var(--text);
  font-size: .92rem;
  font-family: inherit;
  transition: border-color var(--transition);
}
.form-control:focus { outline: none; border-color: var(--brown); }
.form-control::placeholder { color: var(--text-dim); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-submit {
  width: 100%;
  background: var(--brown);
  color: var(--white);
  padding: .9rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.form-submit:hover { background: var(--brown-light); transform: translateY(-2px); }

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  transition: all var(--transition);
}
.contact-info-card:hover { border-color: var(--brown); }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(117,76,40,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-label { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; font-weight: 600; letter-spacing: .06em; }
.contact-value { color: var(--text); font-weight: 500; }

/* ── Footer ── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-logo { height: 40px; width: auto; margin-bottom: .75rem; }
.footer-tagline { color: var(--brown); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem; }
.footer-desc { color: var(--text-muted); font-size: .85rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: .65rem; flex-wrap: wrap; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover { background: var(--brown); border-color: var(--brown); color: var(--white); transform: translateY(-2px); }

.footer-links h4 { font-size: .9rem; color: var(--text); font-family: 'Playfair Display', serif; margin-bottom: 1.25rem; }
.footer-links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: var(--text-muted); font-size: .85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--brown-light); }

.footer-contact h4 { font-size: .9rem; color: var(--text); font-family: 'Playfair Display', serif; margin-bottom: 1.25rem; }
.footer-contact p { color: var(--text-muted); font-size: .85rem; margin-bottom: .65rem; display: flex; align-items: center; gap: .5rem; }
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #25d366;
  color: var(--white);
  padding: .65rem 1.25rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  margin-top: .5rem;
  transition: all var(--transition);
}
.wa-btn:hover { background: #1da851; transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 1.25rem 2rem;
  color: var(--text-dim);
  font-size: .8rem;
}

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 80;
  transition: all var(--transition);
}
.wa-float svg { width: 28px; height: 28px; fill: white; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.6); }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 6rem; right: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  color: var(--text);
  padding: .75rem 1.25rem;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 500;
  z-index: 200;
  transform: translateY(20px);
  opacity: 0;
  transition: all .3s ease;
  pointer-events: none;
  display: flex; align-items: center; gap: .5rem;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── Page Header ── */
.page-header {
  padding: 4rem 0 3rem;
  background: radial-gradient(ellipse at center, rgba(117,76,40,.15) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-header h1 { margin-bottom: .5rem; }
.page-header p { color: var(--text-muted); }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: .82rem; color: var(--text-muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--brown-light); }
.breadcrumb span { color: var(--text-dim); }

/* ── Admin ── */
.admin-layout { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: var(--black);
  border-right: 1px solid var(--border);
  padding: 1.5rem 0;
}
.admin-sidebar .logo { padding: 0 1.5rem 1.5rem; border-bottom: 1px solid var(--border); margin-bottom: 1rem; }
.admin-sidebar .logo img { height: 32px; }
.admin-nav a {
  display: flex; align-items: center; gap: .65rem;
  padding: .75rem 1.5rem;
  font-size: .88rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.admin-nav a:hover, .admin-nav a.active { background: rgba(117,76,40,.15); color: var(--brown-light); border-left: 3px solid var(--brown); }
.admin-content { padding: 2rem; overflow-y: auto; }
.admin-content h2 { margin-bottom: 1.5rem; }

.data-table { width: 100%; border-collapse: collapse; }
.data-table th { background: var(--bg-card); padding: .75rem 1rem; text-align: left; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.data-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--border); font-size: .88rem; vertical-align: middle; }
.data-table tr:hover td { background: rgba(117,76,40,.05); }
.data-table img { width: 52px; height: 52px; object-fit: cover; border-radius: 6px; }

.admin-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; }
.admin-card h3 { font-size: 1rem; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }

.badge { display: inline-block; padding: .2rem .65rem; border-radius: 50px; font-size: .72rem; font-weight: 700; }
.badge-green { background: rgba(37,211,102,.15); color: #25d366; }
.badge-red { background: rgba(229,62,62,.15); color: #e53e3e; }
.badge-brown { background: rgba(117,76,40,.2); color: var(--brown-light); }

.action-btns { display: flex; gap: .4rem; }
.btn-sm {
  padding: .35rem .8rem;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn-edit { background: rgba(117,76,40,.2); color: var(--brown-light); }
.btn-edit:hover { background: var(--brown); color: var(--white); }
.btn-delete { background: rgba(229,62,62,.1); color: #e53e3e; }
.btn-delete:hover { background: #e53e3e; color: var(--white); }

.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 2rem; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.stat-card .stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--brown); }
.stat-card .stat-label { font-size: .8rem; color: var(--text-muted); margin-top: .25rem; }

/* ══════════════════════════════════════════
   RESPONSIVE — Tablet → Phone
   ══════════════════════════════════════════ */

/* ── 1024px: Tablet ── */
@media (max-width: 1024px) {
  .section { padding: 3.5rem 0; }
  .section-inner { padding: 0 1.5rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid   { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cart-layout  { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .stats-grid   { grid-template-columns: repeat(2,1fr); }

  /* Shop: hide sidebar by default, show via toggle */
  .shop-layout  { grid-template-columns: 1fr; gap: 1rem; }
  .filter-sidebar {
    position: static;
    display: none;
  }
  .filter-sidebar.open { display: block; }
  .filter-toggle-btn { display: inline-flex; }

  .hero-inner { padding: 3rem 1.5rem; }
  .ceo-grid   { grid-template-columns: 340px 1fr; gap: 3rem; }
}

/* ── 768px: Mobile ── */
@media (max-width: 768px) {
  /* Topbar */
  .topbar-inner { padding: .4rem 1rem; gap: 1rem; }
  .topbar-item:not(:first-child) { display: none; }
  .topbar-divider { display: none; }

  /* Nav */
  .nav-inner { padding: 0 1rem; }
  .menu-toggle { display: flex; }
  .nav-sep { display: none; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(6,4,2,.98);
    border-bottom: 1px solid rgba(117,76,40,.2);
    padding: .5rem 0 1rem;
    z-index: 50;
    backdrop-filter: blur(20px);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(117,76,40,.07); }
  .nav-links li + li:not(.nav-cart-li)::before { display: none; }
  .nav-links a { padding: .85rem 1.5rem; font-size: 1.1rem; }
  .nav-links a::after { left: 1.5rem; right: 1.5rem; }
  .nav-cart-li { margin-left: 0; padding-left: 0; border-left: none; }
  .cart-btn {
    margin: .5rem 1.5rem 0 !important;
    width: calc(100% - 3rem) !important;
    justify-content: center !important;
  }

  /* Hero */
  .hero { min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1rem 2.5rem;
  }
  .hero-visual { display: none; }
  .hero-stats { gap: 1.25rem; margin-top: 1.75rem; padding-top: 1.5rem; flex-wrap: wrap; }
  .stat-num { font-size: 1.4rem; }

  /* Sections */
  .section { padding: 2.5rem 0; }
  .section-inner { padding: 0 1rem; }
  .section-header { margin-bottom: 2rem; }

  /* Categories */
  .cats-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: .75rem; }
  .cat-card { padding: 1rem .75rem; }
  .cat-icon { font-size: 1.6rem; }
  .cat-name { font-size: .78rem; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .product-name { font-size: 1rem; }
  .product-info { padding: .9rem; }
  /* Show overlay buttons always on touch devices */
  .product-overlay {
    opacity: 1;
    background: rgba(14,12,11,.5);
    flex-direction: column;
    gap: .5rem;
    padding: .5rem;
  }
  .overlay-btn { font-size: .75rem; padding: .45rem .75rem; }

  /* Shop */
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .filter-sidebar.open { display: block; margin-bottom: 1rem; }
  .filter-toggle-btn { display: inline-flex; }
  .shop-header-bar { flex-direction: column; align-items: stretch; gap: .75rem; }
  .search-input { width: 100%; }

  /* Cart */
  .cart-layout { grid-template-columns: 1fr; }
  .cart-item {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
    gap: .6rem;
  }
  .cart-item-img { width: 64px; height: 64px; }
  .cart-item-name { font-size: .88rem; }
  .qty-control { grid-column: 2; }
  .cart-item-price { grid-column: 2; }
  .remove-btn { grid-column: 1; grid-row: 2; justify-self: center; }

  /* Gallery */
  .gallery-grid { columns: 2; column-gap: .75rem; }

  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .value-card { padding: 1.25rem 1rem; }
  .value-icon { font-size: 1.6rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom-bar { flex-direction: column; gap: .75rem; text-align: center; }

  /* About page */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ceo-photo-outer { max-width: 300px; margin: 0 auto; }

  /* CEO section (homepage) */
  .ceo-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ceo-photo-outer { max-width: 300px; margin: 0 auto; }
  .ceo-stats-row { gap: 1rem; justify-content: space-between; }
  .ceo-text-col { padding: 0; }

  /* Admin */
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: .75rem; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr !important; }
  .blog-post-layout { grid-template-columns: 1fr !important; }
  .blog-sidebar { display: none; }

  /* Page header */
  .page-header { padding: 2.5rem 0 1.5rem; }
  .page-header h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .breadcrumb { font-size: .75rem; }

  /* Banner */
  .site-banner { font-size: .75rem; height: 34px; line-height: 34px; }

  /* Buttons */
  .btn-primary, .btn-outline { padding: .75rem 1.4rem; font-size: .9rem; }
}

/* ── 480px: Small phones ── */
@media (max-width: 480px) {
  .topbar { display: none; }
  .site-header { top: 0; }

  .nav-inner { min-height: 54px; padding: 0 .85rem; }
  .logo-img { height: 36px; }

  .hero-inner { padding: 2.5rem .85rem 2rem; }
  .section-inner { padding: 0 .85rem; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .product-info { padding: .75rem; }
  .product-name { font-size: .92rem; }
  .product-price { font-size: 1rem; }
  .add-to-cart { padding: .45rem .7rem; font-size: .75rem; }
  .add-to-cart span { display: none; }

  .cats-grid { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .cat-card { padding: .85rem .5rem; }
  .cat-icon { font-size: 1.4rem; }
  .cat-name { font-size: .72rem; }

  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.2rem; }
  .stat-label { font-size: .68rem; }

  .values-grid { grid-template-columns: 1fr; }

  .gallery-grid { columns: 1; }

  .ceo-grid { gap: 1.5rem; }
  .ceo-heading { font-size: 1.6rem; }
  .ceo-stats-row { gap: .75rem; }
  .ceo-stat-n { font-size: 1.3rem; }

  .section-header h2 { font-size: clamp(1.3rem, 6vw, 1.8rem); }

  .btn-primary, .btn-outline { padding: .7rem 1.1rem; font-size: .85rem; width: 100%; justify-content: center; }
  .hero-cta { flex-direction: column; gap: .75rem; }

  .footer-inner { gap: 1.5rem; }

  .cart-summary { position: static; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
}
.review-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.review-stars { font-size: 1.1rem; letter-spacing: 2px; }
.review-text {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: .9rem; color: var(--text); }
.review-location { font-size: .75rem; color: var(--text-dim); margin-top: .15rem; }

/* ── Animations ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(30px) } to { opacity:1; transform:translateY(0) } }
.fade-up { animation: fadeUp .6s ease forwards; }
.fade-up-delay-1 { animation-delay: .1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: .2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: .3s; opacity: 0; }

/* ── Divider ── */
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── Banner ticker ── */
.site-banner {
  position: relative;
  z-index: 110;
  overflow: hidden;
  height: 38px;
  line-height: 38px;
  font-size: .82rem;
  font-weight: 500;
}

/* The track: a plain block with nowrap — animation slides it left */
.banner-track {
  display: block;
  white-space: nowrap;
  width: max-content;
  animation: ticker 35s linear infinite;
  will-change: transform;
}
.site-banner:hover .banner-track { animation-play-state: paused; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Each repeated chunk — purely inline, no flex */
.banner-segment {
  display: inline;
  padding: 0 3rem;
}
.banner-segment::after {
  content: ' ◆ ';
  opacity: .4;
  font-size: .5rem;
  vertical-align: middle;
}

.banner-title { font-weight: 700; }
.banner-msg   { opacity: .88; }
.banner-cta {
  display: inline-block;
  background: rgba(255,255,255,.2);
  color: inherit;
  padding: .15rem .8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .77rem;
  transition: background .2s;
  vertical-align: middle;
  margin-left: .4rem;
}
.banner-cta:hover { background: rgba(255,255,255,.38); }

.banner-close {
  position: absolute;
  right: .6rem; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: inherit; opacity: .55;
  font-size: .8rem; cursor: pointer;
  padding: .3rem; z-index: 3;
  line-height: 1;
  transition: opacity .2s;
}
.banner-close:hover { opacity: 1; }

/* ── Quote Widget ── */
.quote-fab {
  position: fixed;
  bottom: 5.5rem; right: 2rem;
  background: var(--brown);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: .7rem 1.25rem;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 79;
  box-shadow: 0 4px 20px rgba(117,76,40,.5);
  display: flex; align-items: center; gap: .5rem;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: .02em;
}
.quote-fab:hover { background: var(--brown-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(117,76,40,.6); }
.quote-fab svg { width: 16px; height: 16px; }

/* ── Call-Back FAB ── */
.callback-fab {
  position: fixed;
  bottom: 9rem; right: 2rem;
  background: #1a6e3c;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .7rem 1.1rem .7rem .9rem;
  font-size: .82rem;
  font-weight: 600;
  font-family: inherit;
  display: flex; align-items: center; gap: .45rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,.4);
  z-index: 79;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: .02em;
}
.callback-fab:hover { background: #22884b; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,110,60,.5); }
.callback-fab svg { width: 16px; height: 16px; }
.callback-submit-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; padding: .85rem;
  background: #1a6e3c; color: #fff;
  border: none; border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 600; font-family: inherit;
  cursor: pointer; margin-top: .5rem;
  transition: background .2s;
}
.callback-submit-btn:hover { background: #22884b; }
.callback-submit-btn:disabled { opacity: .6; cursor: not-allowed; }

.quote-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  z-index: 300;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,.5);
}
.quote-drawer.open { transform: translateX(0); }
.quote-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 299;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.quote-drawer-overlay.open { opacity: 1; pointer-events: all; }
.quote-drawer-head {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.quote-drawer-head h3 { font-size: 1.1rem; margin: 0; }
.quote-drawer-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.quote-drawer-close:hover { background: var(--brown); color: var(--white); border-color: var(--brown); }
.quote-drawer-body { padding: 1.5rem; flex: 1; overflow-y: auto; }
.quote-drawer-body p { color: var(--text-muted); font-size: .88rem; margin-bottom: 1.25rem; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { border-color: var(--border-glow); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; background: var(--bg-card2); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body { padding: 1.25rem; }
.blog-date { font-size: .75rem; color: var(--text-dim); margin-bottom: .5rem; }
.blog-card-title { font-family: 'Playfair Display',serif; font-size: 1.1rem; color: var(--text); margin-bottom: .6rem; line-height: 1.35; }
.blog-card-excerpt { font-size: .85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-read-more { color: var(--brown-light); font-size: .85rem; font-weight: 600; display: inline-flex; align-items: center; gap: .3rem; }

/* Clients */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.client-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.client-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.client-card-img { width: 100%; height: 180px; object-fit: cover; background: var(--bg-card2); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.client-card-body { padding: 1.25rem; }
.client-industry { font-size: .72rem; color: var(--brown-light); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .4rem; }
.client-name { font-family: 'Playfair Display',serif; font-size: 1.1rem; color: var(--text); margin-bottom: .3rem; }
.client-location { font-size: .8rem; color: var(--text-dim); margin-bottom: .75rem; }
.client-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: .75rem; }
.client-units { display: inline-flex; align-items: center; gap: .4rem; background: rgba(117,76,40,.15); color: var(--brown-light); font-size: .75rem; font-weight: 700; padding: .25rem .75rem; border-radius: 50px; }

/* ── Alert ── */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: .9rem; }
.alert-success { background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.3); color: #25d366; }
.alert-error { background: rgba(229,62,62,.1); border: 1px solid rgba(229,62,62,.3); color: #e53e3e; }
