/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  height: 38px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
}
.announce-track {
  display: flex; align-items: center; gap: 80px;
  white-space: nowrap;
  animation: announceScroll 28s linear infinite;
  padding-left: 100%;
}f
.announce-track span {
  font-size: 0.78rem; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  flex-shrink: 0;
}
.announce-track span:nth-child(odd) { color: var(--gold); }
@keyframes announceScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.announce-close {
  position: absolute; right: 12px;
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  border-radius: 50%; font-size: 0.65rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); z-index: 1;
  border: none; cursor: pointer;
}
.announce-close:hover { background: rgba(255,255,255,0.18); color: var(--white); }
.announce-bar.hidden { display: none; }

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #c9a84c;
  --gold-light: #d4af37;
  --dark: #1a1208;
  --dark2: #2c1f0e;
  --brown: #6b4c2a;
  --cream: #faf6ef;
  --cream2: #f3ece0;
  --white: #ffffff;
  --text: #3d2b1f;
  --text-light: #8a7264;
  --border: #e8d9c0;
  --shadow: 0 4px 30px rgba(26,18,8,0.10);
  --shadow-lg: 0 12px 50px rgba(26,18,8,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --brand-maroon: #6B1C1C;
  --brand-maroon-dark: #541616;
  --brand-maroon-light: #7A2525;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  line-height: 1.6;
  padding-top: 0; /* header is fixed; JS sets --header-h dynamically */
}
body.menu-open,
body.cert-lightbox-open {
  overflow: hidden;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== SITE HEADER (PUREWOOD) ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.35s ease, box-shadow var(--transition);
}
.site-header.is-sticky .header-top {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  border-bottom: none;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}
.site-header .header-top {
  max-height: 80px;
  opacity: 1;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}
.site-header.is-sticky .header-nav {
  box-shadow: 0 4px 28px rgba(0,0,0,0.22);
}
.site-header.is-sticky {
  box-shadow: none;
}

.header-top {
  background: #1a1208;
  border-bottom: 1px solid rgba(107, 28, 28, 0.08);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.header-top-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 8px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
}
.header-logo,
.header-tagline,
.header-actions {
  min-width: 0;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}
.header-logo-img {
  /*width: auto !important;*/
  /*height: 48px;*/
  max-width: 120px;
  /*object-fit: contain;*/
}
.header-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #1a1208;
  text-transform: uppercase;
}
.header-tagline {
  justify-self: center;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
}
.header-tagline strong {
  font-weight: 700;
  letter-spacing: 0.06em;
}
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-social,
.header-search {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.header-social:hover,
.header-search:hover {
  background: rgba(107, 28, 28, 0.08);
  color: #1a1208;
  transform: translateY(-1px);
}

.header-nav {
  background: #c9a84c;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  position: relative;
  z-index: 1001;
}
.header-nav-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 48px;
  box-sizing: border-box;
  overflow: visible;
}
.nav-panel {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: visible;
}
.nav-close { display: none; }

.header-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 0;
  overflow: visible;
}
.header-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.header-menu > li > a:hover {
  background: #bdae38;
  color: var(--white);
}
.header-menu .chevron {
  font-size: 0.55rem;
  opacity: 0.85;
  margin-top: 2px;
}
.header-menu .has-dropdown {
  position: relative;
}
/* Invisible bridge so hover stays active when moving to submenu */
.header-menu .has-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  z-index: 1102;
}
.header-menu .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 6px 0;
  background: #2c1f0e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1103;
  pointer-events: none;
}
.header-menu .has-dropdown:hover .dropdown,
.header-menu .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.header-menu .dropdown a {
  display: block;
  padding: 11px 18px;
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), color var(--transition);
}
.header-menu .dropdown li:last-child a { border-bottom: none; }
.header-menu .dropdown a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.header-search-bar {
  background: #c9a84c;
  padding: 12px 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.header-search-bar[hidden] { display: none; }
.header-search-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
}
.header-search-form input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.95);
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.header-search-form button[type="submit"] {
  padding: 10px 20px;
  background: var(--white);
  color: #1a1208;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: var(--transition);
}
.header-search-form button[type="submit"]:hover {
  background: var(--cream);
}
.header-search-close {
  color: rgba(255,255,255,0.8);
  font-size: 1.5rem;
  line-height: 1;
  padding: 4px 8px;
}
.header-search-close:hover { color: var(--white); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nav-overlay.visible {
  display: block;
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===== HERO EXTRAS ===== */
.slide-progress-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,0.12); z-index: 10;
}
.slide-progress-fill {
  height: 100%; background: var(--gold);
  width: 0%; transition: none;
}
.slide-progress-fill.animating {
  transition: width 5.5s linear;
}
.scroll-indicator {
  position: absolute; left: 50%; bottom: 56px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 10;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(5px); }
}
.scroll-line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.2);
  position: relative; overflow: hidden;
}
.scroll-dot {
  width: 1px; height: 14px;
  background: var(--gold);
  position: absolute; top: -14px;
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { top: -14px; } 80% { top: 40px; } 100% { top: 40px; opacity: 0; }
}
.hero-badge {
  position: absolute; right: 60px; bottom: 120px;
  z-index: 10;
  animation: badgePop 0.8s ease 1s both;
}
@keyframes badgePop {
  from { opacity: 0; transform: scale(0.7) rotate(-10deg); }
  to   { opacity: 1; transform: scale(1) rotate(-6deg); }
}
.hero-badge-inner {
  width: 110px; height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transform: rotate(-6deg);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  cursor: default;
}
.badge-number {
  font-family: var(--font-heading);
  font-size: 1.8rem; font-weight: 800;
  color: var(--dark); line-height: 1;
}
.badge-text {
  font-size: 0.62rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--dark); text-align: center; line-height: 1.3;
}

/* ===== SLIDER ===== */
.slider {
  position: relative; width: 100%; height: 100vh;
  overflow: hidden; min-height: 600px;
}
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 7s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(10,6,2,0.78) 0%, rgba(26,18,8,0.45) 60%, rgba(0,0,0,0.2) 100%);
}
.slide-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 10% 0 8%;
  transform: translateY(30px); opacity: 0;
  transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.3s;
}
.slide.active .slide-content { transform: translateY(0); opacity: 1; }
.slide-tag {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.slide-tag::before {
  content: ''; display: block; width: 40px; height: 1px;
  background: var(--gold);
}
.slide-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 6vw, 5.5rem);
  font-weight: 800; line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.slide-content h1 span { color: var(--gold); }
.slide-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.80);
  max-width: 500px; margin-bottom: 40px;
  line-height: 1.7;
}
.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.5);
}
.btn-outline-white {
  display: inline-flex; align-items: center;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 12px 30px; border-radius: 50px;
  font-weight: 500; font-size: 0.9rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: var(--transition);
}
.btn-outline-white:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white); font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-50%) scale(1.1);
}
.prev { left: 36px; }
.next { right: 36px; }
.slider-dots {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: var(--transition);
  border: none;
}
.dot.active {
  background: var(--gold);
  width: 28px; border-radius: 4px;
}
.slide-counter {
  position: absolute; right: 40px; bottom: 36px;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem; letter-spacing: 0.1em;
  z-index: 10;
}
#currentSlide { color: var(--gold); font-weight: 700; font-size: 1.1rem; }

/* ===== FEATURES BAR ===== */
.features-bar {
  background: var(--dark);
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.feature-item {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 50px;
  border-right: 1px solid rgba(201,168,76,0.12);
  flex: 1; min-width: 220px;
}
.feature-item:last-child { border-right: none; }
.feature-icon { font-size: 2rem; flex-shrink: 0; }
.feature-item h4 { color: var(--white); font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.feature-item p { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* ===== HOME ABOUT INTRO ===== */
.home-about-intro {
  background: var(--white);
  padding: 80px clamp(20px, 5vw, 48px);
  width: 100%;
  border-bottom: 1px solid var(--border);
}
.home-about-intro-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.home-about-intro-inner .section-tag {
  margin-bottom: 0;
}
.home-about-intro-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  margin: 0;
}
.home-about-intro-title span { color: var(--gold); }
.home-about-intro-text {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.6vw, 1rem);
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
  max-width: 720px;
}

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 16px;
}
.section-tag::before, .section-tag::after {
  content: ''; display: block; width: 30px; height: 1px; background: var(--gold);
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2rem);
  font-weight: 700; color: var(--dark);
  margin-bottom: 16px;
}
.section-header h2 span { color: var(--gold); }
.section-desc { color: var(--text-light); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ===== CATEGORIES ===== */
.categories-section { background: var(--cream); }

/* New showcase-style category grid */
.cat-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-showcase-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(26,18,8,0.07);
  transition: var(--transition);
  text-decoration: none;
}
.cat-showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(26,18,8,0.14);
}
.cat-showcase-img {
  height: 350px;
  overflow: hidden;
  background: var(--cream2);
  display: flex; align-items: center; justify-content: center;
}
.cat-showcase-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.cat-showcase-card:hover .cat-showcase-img img {
  transform: scale(1.06);
}
.cat-showcase-label {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 14px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.cat-showcase-card:hover .cat-showcase-label {
  background: var(--gold);
  color: var(--dark);
}

/* Legacy category-card kept for other pages */
.categories-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  grid-template-rows: 420px;
  gap: 16px;
}
.category-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer; display: block;
}
.category-card.large { grid-row: span 1; }
.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.08); }
.category-info {
  position: absolute; bottom: 24px; left: 24px;
  z-index: 2;
}
.category-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 700;
  color: var(--white);
}
.category-info p { color: rgba(255,255,255,0.75); font-size: 0.85rem; }
.category-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,6,2,0.75) 0%, transparent 55%);
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 24px;
  z-index: 1;
  opacity: 0;
  transition: opacity var(--transition);
}
.category-card:hover .category-overlay { opacity: 1; }
.category-overlay span {
  color: var(--gold);
  font-weight: 600; font-size: 0.9rem;
  background: rgba(0,0,0,0.5);
  padding: 8px 16px; border-radius: 50px;
}

/* ===== PRODUCTS ===== */
.featured-section { background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-img-wrap {
  position: relative; overflow: hidden;
  height: 280px;
}
.product-img-wrap img {
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

/* Badge & wishlist kept for index.php featured section */
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.product-badge.new { background: #2e7d32; color: #fff; }
.product-badge.sale { background: #c62828; color: #fff; }
.wishlist-btn {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text-light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: var(--transition);
  opacity: 0;
  transform: scale(0.8);
}
.product-card:hover .wishlist-btn { opacity: 1; transform: scale(1); }
.wishlist-btn:hover { color: #e53935; }

.product-info { padding: 20px; }
.product-category { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 6px; }
.product-info h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; line-height: 1.3; }
.product-rating { font-size: 0.8rem; color: var(--gold); margin-bottom: 12px; }
.product-rating span { color: var(--text-light); }
.product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.price { font-size: 1.2rem; font-weight: 700; color: var(--dark); }
.old-price { font-size: 0.9rem; color: var(--text-light); text-decoration: line-through; }
.add-to-cart {
  display: block; width: 100%;
  background: var(--dark);
  color: var(--white);
  padding: 11px; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 600;
  text-align: center; letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
}
.add-to-cart:hover { background: var(--gold); color: var(--dark); }

/* Clean "View Details" link for products.php */
.product-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap var(--transition), color var(--transition);
}
.product-view-btn:hover {
  color: var(--dark);
  gap: 10px;
}

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

/* ===== OFFER BANNER ===== */
.offer-banner {
  background: var(--dark2);
  display: flex; align-items: center;
  overflow: hidden;
  min-height: 400px;
}
.offer-content {
  flex: 1; padding: 80px;
  min-width: 0;
}
.offer-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white); font-weight: 700;
  line-height: 1.2; margin: 16px 0 20px;
}
.offer-content p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 36px; }
.offer-content strong { color: var(--gold); }
.btn-gold {
  display: inline-flex; align-items: center;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 14px 36px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: var(--transition);
}
.btn-gold:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.offer-img {
  flex: 0 0 45%; height: 400px; overflow: hidden;
  position: relative;
}
.offer-img::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 120px;
  background: linear-gradient(to right, var(--dark2), transparent);
  z-index: 1;
}
.offer-img img { height: 100%; object-position: center; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Testimonial Carousel — 3 cards visible, slides 1 at a time */
.tcar-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tcar-viewport {
  flex: 1;
  overflow: hidden;
}
.tcar-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.tcar-item {
  /* width set by JS based on viewport */
  flex-shrink: 0;
}
/* Keep the existing card styles intact */
.tcar-item .testimonial-card {
  height: 96%;
  padding: 20px;
  border-radius: 20px;
}
.tcar-btn {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--dark);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.tcar-btn:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.tcar-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.tcar-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none; cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.tcar-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}
  
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: none;
  box-shadow: 0 4px 24px rgba(26,18,8,0.10);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,18,8,0.16); }
.testimonial-card.featured {
  background: var(--white);
  border: none;
  box-shadow: 0 4px 24px rgba(26,18,8,0.10);
}
.testimonial-card.featured p,
.testimonial-card.featured .testimonial-author strong,
.testimonial-card.featured .testimonial-author span { color: var(--text); }
.testimonial-card.featured .testimonial-author strong { color: var(--dark); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 20px; }
.testimonial-card p {
  font-size: 0.95rem; line-height: 1.75;
  color: var(--text); margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8b6914);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--dark); margin-bottom: 2px; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0;
  padding: 80px 40px;
}
.stat-item {
  flex: 1; min-width: 180px;
  text-align: center;
  padding: 20px 40px;
  border-right: 1px solid rgba(201,168,76,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-item h2 {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 800;
  color: var(--gold); margin-bottom: 8px;
}
.stat-item p { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== CERTIFICATES CAROUSEL ===== */
.certificates-section {
  background: var(--cream);
  padding: 80px 0 70px;
}
.certificates-section .section-header {
  margin-bottom: 48px;
}
.cert-carousel {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.cert-nav-btn {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--dark);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.cert-nav-btn:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.cert-track-wrap {
  overflow: hidden;
  width: 100%;
  max-width: 860px;
}
.cert-track {
  display: flex;
  gap: 28px;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.cert-card {
  flex: 0 0 calc(33.333% - 19px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.cert-card img {
  width: 90px; height: 90px;
  object-fit: contain;
}
.cert-card-name {
  font-family: var(--font-heading);
  font-size: 0.95rem; font-weight: 700;
  color: var(--dark);
}
.cert-card-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}
.cert-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.cert-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none; cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.cert-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* Certificate lightbox */
.cert-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cert-lightbox[hidden] {
  display: none;
}
.cert-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 2, 0.88);
  cursor: pointer;
}
.cert-lightbox-dialog {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  max-width: min(720px, 96vw);
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  animation: certLightboxIn 0.3s ease;
}
@keyframes certLightboxIn {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cert-lightbox-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(26, 18, 8, 0.08);
  color: var(--dark);
  font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  z-index: 2;
}
.cert-lightbox-close:hover { background: var(--dark); color: var(--white); }
.cert-lightbox-title {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin: 0 40px 20px 0;
  padding-right: 8px;
}
.cert-lightbox-image-wrap {
  background: #f5f5f5;
  border-radius: var(--radius);
  padding: 12px;
  border: 1px solid var(--border);
}
.cert-lightbox-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  background: #0e0a04;
  color: rgb(255 255 255 / 83%);
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding: 40px 80px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {
  min-width: 0;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
  line-height: 0;
}
.footer-logo img {
  width: auto !important;
  height: auto !important;
  max-width: 150px;
  max-height: 75px;
  object-fit: contain;
  display: block;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.8; }
.social-links { display: flex; gap: 10px; }
.social-a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-a svg { display: block; flex-shrink: 0; }
.social-a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-heading);
  color: var(--white); font-size: 1rem;
  font-weight: 600; margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.88rem; color: rgb(255 255 255 / 83%);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 12px; line-height: 1.6; }
.footer-bottom {
  text-align: center;
  padding: 10px;
  margin: 0;
  font-size: 0.82rem;
  color: rgb(255 255 255 / 83%);
}

/* ===== NEW ARRIVALS HORIZONTAL SCROLL ===== */
.new-arrivals-section { background: var(--cream); overflow: hidden; }
.section-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px;
}
.section-header-row h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; color: var(--dark);
}
.section-header-row h2 span { color: var(--gold); }
.scroll-nav { display: flex; align-items: center; gap: 10px; }
.scroll-nav-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.scroll-nav-btn:hover {
  background: var(--dark); color: var(--white);
  border-color: var(--dark);
}
.btn-outline-dark {
  padding: 10px 22px; border-radius: 50px;
  border: 1.5px solid var(--dark);
  color: var(--dark); font-size: 0.82rem;
  font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; transition: var(--transition);
  margin-left: 4px;
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.arrivals-track-wrap {
  overflow-x: auto; scroll-behavior: smooth;
  padding: 4px 40px 20px;
  scrollbar-width: none;
}
.arrivals-track-wrap::-webkit-scrollbar { display: none; }
.arrivals-track {
  display: flex; gap: 22px;
  width: max-content;
}
.arrival-card {
  width: 280px; flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.arrival-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.arrival-img {
  position: relative; height: 240px; overflow: hidden;
}
.arrival-img img { transition: transform 0.5s ease; }
.arrival-card:hover .arrival-img img { transform: scale(1.06); }
.arrival-info { padding: 18px 20px; }
.arrival-info h3 { font-family: var(--font-heading); font-size: 1rem; color: var(--dark); margin-bottom: 10px; }

/* ===== PROCESS ===== */
.process-section { background: var(--white); }
.process-grid {
  display: flex; align-items: flex-start;
  gap: 0; position: relative;
}
.process-step {
  flex: 1; text-align: center;
  padding: 0 24px;
  position: relative;
}
.process-connector {
  flex: 0 0 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.2));
  margin-top: 52px; position: relative;
}
.process-connector::after {
  content: '▶';
  position: absolute; right: -8px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold); font-size: 0.65rem;
}
.process-num {
  font-family: var(--font-heading);
  font-size: 3.5rem; font-weight: 800;
  color: rgba(201,168,76,0.12);
  line-height: 1; margin-bottom: -14px;
  position: relative; z-index: 0;
}
.process-icon-wrap {
  width: 100px; height: 100px;
  /* background: linear-gradient(135deg, var(--dark), var(--dark2)); */
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 20px;
  position: relative; z-index: 1;
  /* box-shadow: 0 6px 24px rgba(26,18,8,0.2); */
  transition: var(--transition);
}
.process-step:hover .process-icon-wrap {
  background: linear-gradient(135deg, #5a4b3b, #1a1208);
  transform: scale(1.1);
}
.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700;
  color: var(--dark); margin-bottom: 10px;
}
.process-step p { font-size: 0.86rem; color: var(--text-light); line-height: 1.7; }

/* ===== MATERIALS ===== */
.materials-section {
  display: flex; min-height: 580px;
}
.materials-left {
  flex: 1; padding: 80px 70px 80px 80px;
  background: var(--cream2);
  display: flex; flex-direction: column; justify-content: center;
}
.materials-left h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700; color: var(--dark);
  margin: 16px 0 16px; line-height: 1.2;
}
.materials-left h2 span { color: var(--gold); }
.materials-left > p { color: var(--text-light); font-size: 0.95rem; line-height: 1.8; margin-bottom: 32px; }
.wood-list { display: flex; flex-direction: column; gap: 4px; }
.wood-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 20px; border-radius: var(--radius);
  cursor: pointer; transition: var(--transition);
  border: 1.5px solid transparent;
}
.wood-item:hover, .wood-item.active {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.wood-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); margin-top: 5px;
  flex-shrink: 0; transition: background var(--transition);
}
.wood-item.active .wood-dot, .wood-item:hover .wood-dot { background: var(--gold); }
.wood-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.wood-item p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
.materials-right {
  flex: 1; position: relative; overflow: hidden;
}
.materials-right img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.5s ease;
}
.materials-badge {
  position: absolute; bottom: 32px; left: 32px;
  background: rgba(26,18,8,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
}
.materials-badge span { font-size: 1.5rem; }
.materials-badge strong { display: block; color: var(--white); font-size: 0.9rem; }
.materials-badge small { color: rgba(255,255,255,0.5); font-size: 0.75rem; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon-wrap {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  border: 1.5px solid rgba(201,168,76,0.2);
  transition: var(--transition);
}
.why-card:hover .why-icon-wrap {
  background: linear-gradient(135deg, var(--gold), #8b6914);
}
.why-icon { font-size: 2rem; }
.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 700;
  color: var(--dark); margin-bottom: 12px;
}
.why-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; }

/* ===== WOOD TYPES ===== */
.wood-types-section {
  background: var(--white);
}
.wood-types-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}
.wood-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px 14px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.wood-type-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(107, 28, 28, 0.25);
}
.wood-type-icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  /* background: var(--white); */
  /* border-radius: 50%; */
  /* border: 1px solid var(--border); */
  /* box-shadow: var(--shadow); */
  transition: var(--transition);
}
.wood-type-card:hover .wood-type-icon {
  border-color: rgba(107, 28, 28, 0.2);
  /* box-shadow: 0 8px 24px rgba(107, 28, 28, 0.12); */
}
.wood-type-icon img {
  width: 130px !important;
  height: 130px !important;
  object-fit: contain;
}
.wood-type-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin: 0;
  transition: color var(--transition);
}
.wood-type-card:hover .wood-type-name {
  color: var(--brand-maroon);
}

/* ===== GALLERY ===== */
.gallery-section { background: var(--white); padding-bottom: 80px; }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-hover {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,6,2,0.85) 0%, rgba(10,6,2,0.2) 50%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover span {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gold); margin-bottom: 4px;
}
.gallery-hover p {
  font-family: var(--font-heading);
  font-size: 1.1rem; color: var(--white);
  font-weight: 600;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark2) 0%, #0e0a04 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '◆';
  position: absolute; right: 10%; top: 50%;
  transform: translateY(-50%);
  font-size: 18rem; color: rgba(201,168,76,0.04);
  pointer-events: none; line-height: 1;
}
.newsletter-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; gap: 80px;
  position: relative; z-index: 1;
}
.newsletter-text { flex: 1; }
.newsletter-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white); font-weight: 700;
  line-height: 1.2; margin: 12px 0 16px;
}
.newsletter-text p { color: rgba(255,255,255,0.55); font-size: 0.92rem; line-height: 1.7; }
.newsletter-form { flex: 1.2; }
.newsletter-input-wrap {
  display: flex;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 12px;
}
.newsletter-input-wrap input {
  flex: 1; padding: 16px 24px;
  background: none; border: none; outline: none;
  color: var(--white); font-size: 0.9rem;
  font-family: var(--font-body);
}
.newsletter-input-wrap input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input-wrap button {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--dark);
  border: none; cursor: pointer;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--transition);
}
.newsletter-input-wrap button:hover { background: var(--gold-light); }
.newsletter-note { font-size: 0.78rem; color: rgba(255,255,255,0.3); padding-left: 16px; }

/* ===== PAGE HERO ===== */
.page-hero {
  height: 380px; position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(10,6,2,0.7);
}
.page-hero-content {
  position: relative; z-index: 1;
  padding: 0 8%;
  margin-top: 125px;
}
.page-hero-content .section-tag { justify-content: flex-start; }
.page-hero-content .section-tag::after { display: none; }
.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2rem);
  color: var(--white); font-weight: 800;
  margin-top: 12px;
}
.page-hero-content h1 span { color: var(--gold); }
.breadcrumb { display: flex; gap: 8px; margin-top: 16px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ===== PRODUCTS PAGE ===== */
.products-page { background: var(--cream); padding: 60px 0 100px; }

.products-page-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.products-page-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin: 14px 0 18px;
  line-height: 1.2;
}
.products-page-header h2 span { color: var(--gold); }
.products-page-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Category filter chips */
.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  background: var(--white);
}
.filter-chip:hover,
.filter-chip.active {
  border-color: var(--gold);
  color: var(--dark);
  background: var(--gold);
}
.filter-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.filter-label { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); }
.filter-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn {
  padding: 8px 20px; border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,0.07);
}
.sort-select {
  margin-left: auto;
  padding: 9px 18px; border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.82rem; color: var(--text);
  font-family: var(--font-body);
  cursor: pointer; outline: none;
}
.products-grid-big {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ===== ABOUT PAGE ===== */
.about-story {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.about-img-collage {
  position: relative; height: 540px;
}
.about-img-collage .img-main {
  position: absolute; top: 0; left: 0; right: 60px; bottom: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-collage .img-accent {
  position: absolute; bottom: 0; right: 0; width: 55%; height: 52%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-text .section-tag { justify-content: flex-start; }
.about-text .section-tag::after { display: none; }
.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2vw, 2.8rem);
  color: var(--dark); font-weight: 700;
  margin: 16px 0 24px; line-height: 1.25;
}
.about-text h2 span { color: var(--gold); }
.about-text p { color: var(--text-light); line-height: 1.85; font-size: 0.97rem; margin-bottom: 16px; }
.about-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 36px;
}
.value-item {
  background: var(--cream);
  padding: 20px; border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.value-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.value-item p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

.team-section { background: var(--cream); padding: 100px 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo { height: 280px; overflow: hidden; }
.team-photo img { transition: transform 0.5s ease; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-info { padding: 24px 20px; }
.team-info h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--dark); margin-bottom: 4px; }
.team-info p { font-size: 0.82rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== DIRECTORS SECTION ===== */
.directors-section { background: var(--white); }
.directors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.director-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.director-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.director-img-wrap {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.director-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  transition: transform 0.6s ease;
}
.director-card:hover .director-img-wrap img { transform: scale(1.05); }
.director-social {
  position: absolute; bottom: 16px; right: 16px;
  display: flex; gap: 8px;
  opacity: 0; transform: translateY(8px);
  transition: var(--transition);
}
.director-card:hover .director-social { opacity: 1; transform: translateY(0); }
.director-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(26,18,8,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  transition: var(--transition);
}
.director-social a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.director-info { padding: 28px; }
.director-info h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 700;
  color: var(--dark); margin-bottom: 4px;
}
.director-role {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold); margin-bottom: 14px;
}
.director-bio {
  font-size: 0.88rem; color: var(--text-light);
  line-height: 1.75;
}

/* ===== BRAND STORY SECTION ===== */
.brand-story-section { background: var(--cream); }
.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.brand-story-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 560px;
}
.brand-story-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.brand-story-img:hover img { transform: scale(1.04); }
.brand-story-img .brand-story-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex; flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}
.brand-story-img .brand-story-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 800;
  color: var(--dark); line-height: 1;
}
.brand-story-img .brand-story-badge .badge-text {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--dark); text-align: center; line-height: 1.4;
  margin-top: 4px;
}
.brand-story-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; color: var(--dark);
  line-height: 1.2; margin: 16px 0 20px;
}
.brand-story-content h2 span { color: var(--gold); }
.brand-story-lead {
  font-size: 1rem; color: var(--text-light);
  line-height: 1.8; margin-bottom: 36px;
}
.brand-story-points { display: flex; flex-direction: column; gap: 24px; }
.brand-story-point {
  display: flex; gap: 18px; align-items: flex-start;
}
.bsp-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1.5px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.brand-story-point h4 {
  font-size: 0.95rem; font-weight: 700;
  color: var(--dark); margin-bottom: 4px;
}
.brand-story-point p {
  font-size: 0.86rem; color: var(--text-light); line-height: 1.7;
}

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--cream); padding: 80px 0 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px; display: flex; gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateX(6px); border-color: var(--gold); }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), #8b6914);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-info-card h4 { color: var(--dark); font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.contact-info-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem; color: var(--dark);
  margin-bottom: 8px;
}
.contact-form-card > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--dark); text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem; font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition);
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-submit {
  width: 100%; padding: 15px;
  background: var(--dark); color: var(--white);
  border: none; border-radius: var(--radius);
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.form-submit:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

/* ===== MAP ===== */
.map-section {
  width: 100%;
  line-height: 0;
}
.map-section iframe {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  cursor: pointer; border: none;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(201,168,76,0.5); }

/* ===== MOBILE ===== */
@media (max-width: 1200px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .newsletter-inner { gap: 50px; }
  .materials-left { padding: 60px 40px; }
  .hero-badge { right: 30px; bottom: 90px; }
}
@media (max-width: 1100px) {
  .process-grid { flex-wrap: wrap; justify-content: center; gap: 32px; }
  .process-connector { display: none; }
  .process-step { min-width: 180px; flex: 0 0 calc(50% - 16px); }
}

@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
  .cat-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card.large { grid-column: span 2; grid-row: span 1; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid-big { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; padding: 60px 40px; }
}

@media (max-width: 900px) {
  .wood-types-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .wood-type-card { padding: 28px 20px 24px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
  .newsletter-inner { flex-direction: column; gap: 36px; text-align: center; }
  .newsletter-section::before { display: none; }
  .materials-section { flex-direction: column; }
  .materials-right { height: 360px; }
  .materials-left { padding: 50px 30px; }
  .hero-badge { display: none; }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .process-step { flex: 0 0 calc(50% - 16px); }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-collage { height: 380px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .directors-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .brand-story-img { height: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .offer-banner { flex-direction: column; }
  .offer-content { padding: 50px 40px; }
  .offer-img { width: 100%; height: 280px; }
  .offer-img::before { display: none; }
}

@media (max-width: 1100px) {
  .header-top-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    max-width: 100%;
  }
  .header-logo { grid-column: 1; grid-row: 1; }
  .header-actions { grid-column: 2; grid-row: 1; justify-self: end; }
  .header-tagline {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    white-space: normal;
    font-size: 0.82rem;
  }
  .header-menu > li > a { padding: 12px 12px; font-size: 0.72rem; }
}

@media (prefers-reduced-motion: reduce) {
  .cert-slider-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: 0 20px 8px;
  }
  .cert-slider-viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .cert-logo-btn[tabindex="-1"] {
    display: none;
  }
}

@media (max-width: 768px) {
  .certificates-section {
    padding: 60px 0 50px;
  }
  .cert-lightbox-dialog {
    padding: 20px 16px 16px;
  }
  .home-about-intro {
    padding: 48px 20px;
  }
  .home-about-intro-inner { gap: 18px; }
  .home-about-intro-title { letter-spacing: 0.04em; }
  .home-about-intro-text { line-height: 1.75; }

  /* ── Header top: centered logo + tagline ── */
  .header-top-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 16px 10px;
    gap: 6px;
    position: relative;
  }
  .header-logo {
    justify-content: center;
    align-self: center;
    grid-column: unset;
    grid-row: unset;
  }
  .header-logo-img {
    max-width: 60px;
    height: auto;
  }
  .header-actions {
    position: absolute;
    right: 14px;
    top: 14px;
    gap: 8px;
    transform: none;
  }
  .header-tagline {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    white-space: normal;
    padding: 0 52px;
    grid-column: unset;
    grid-row: unset;
  }
  .header-logo-text { font-size: 1rem; letter-spacing: 0.06em; }
  .header-social,
  .header-search { width: 28px; height: 28px; }
  .header-social svg,
  .header-search svg { width: 15px; height: 15px; }

  /* ── Nav ── */
  .header-nav-inner {
    min-height: 48px;
    justify-content: flex-end;
    padding: 0 52px 0 16px;
  }
  .hamburger { right: 12px; display: flex; }
  /* Slide-in panel from right */
  .nav-panel {
    display: flex !important; /* always rendered, just off-screen */
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 88vw);
    height: 100vh;
    background: #1a1208;
    padding: 0;
    z-index: 1050;
    overflow-y: auto;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  }
  .nav-panel.open {
    transform: translateX(0);
  }
  /* Close ✕ button inside panel header */
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 16px 18px;
    font-size: 1.6rem;
    line-height: 1;
    color: rgba(255,255,255,0.6);
    background: none;
    border: none;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    width: 100%;
    cursor: pointer;
    transition: color 0.2s;
    flex-shrink: 0;
  }
  .nav-close:hover { color: #c9a84c; }
  /* Nav list */
  .header-menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    padding: 4px 0 32px;
    overflow: visible;
  }
  .header-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
  }
  .header-menu > li > a:hover { background: rgba(201,168,76,0.1); color: #c9a84c; }
  /* Subcategory dropdown — hidden, expands inline */
  .header-menu .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(0,0,0,0.25);
    padding: 0;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .header-menu .has-dropdown.open .dropdown {
    max-height: 600px;
    pointer-events: auto;
    padding: 4px 0;
  }
  .header-menu .dropdown a {
    padding: 11px 20px 11px 36px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    letter-spacing: 0.02em;
    text-transform: none;
  }
  .header-menu .dropdown a:hover { color: #c9a84c; background: rgba(201,168,76,0.07); }
  .header-menu .dropdown li:last-child a { border-bottom: none; }
  /* Disable desktop hover behaviour */
  .header-menu .has-dropdown:hover .dropdown { max-height: 0; pointer-events: none; }
  .header-menu .has-dropdown.open .dropdown  { max-height: 600px; pointer-events: auto; }
  .header-menu .has-dropdown::after { display: none; }
  /* Chevron flips when open */
  .header-menu > li > a .chevron { transition: transform 0.25s ease; }
  .header-menu .has-dropdown.open > a .chevron { transform: rotate(180deg); display: inline-block; }
  /* Hamburger to X animation */
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header-search-bar { padding: 12px 20px; }
  .slider { height: 92vh; }
  .slide-content {
    padding: 0 20px;
    justify-content: flex-end;
    padding-bottom: 80px;
    align-items: center;
    text-align: center;
  }
  .slide-tag { font-size: 0.7rem; margin-bottom: 10px; justify-content: center; }
  .slide-desc { font-size: 0.88rem; margin-bottom: 24px; text-align: center; }
  .slide-actions {
    gap: 10px;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .btn-primary, .btn-outline-white {
    padding: 11px 22px;
    font-size: 0.8rem;
    width: 100%;
    justify-content: center;
  }
  .hero-badge { display: none; }
  .slide-counter { right: 16px; bottom: 20px; font-size: 0.72rem; }
  .prev { left: 12px; } .next { right: 12px; }
  .features-bar { flex-direction: column; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.12); justify-content: center; }
  .categories-grid { grid-template-columns: 1fr 1fr; height: auto; grid-template-rows: auto; }
  .category-card { height: 200px; }
  .category-card.large { grid-column: span 2; height: 250px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .products-grid-big { grid-template-columns: 1fr; }
  .stats-section { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.15); padding: 30px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 50px 24px; }
  .footer-logo img { max-width: 130px; max-height: 48px; }
  .section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 30px 24px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .wood-types-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .wood-type-name { font-size: 0.9rem; }
  .home-about-intro { padding: 40px 16px; }
  .home-about-intro-title { font-size: 1.15rem; }
  .home-about-intro-text { font-size: 0.9rem; line-height: 1.7; }

  /* Header — very small phones */
  .header-top-inner {
    padding: 12px 12px 8px;
    gap: 5px;
  }
  .header-logo-img { max-width: 95px; height: auto; }
  .header-tagline { font-size: 0.68rem; padding: 0 44px; }
  .header-actions { right: 10px; top: 12px; gap: 4px; }
  .header-social { display: none; }
  .header-search { width: 28px; height: 28px; }

  /* Slider — very small phones */
  .slider { height: 100svh; min-height: 500px; }
  .slide-content {
    padding: 0 16px 70px;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
  }
  .slide-content h1 {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
    margin-bottom: 12px;
    line-height: 1.15;
  }
  .slide-tag {
    font-size: 0.65rem;
    margin-bottom: 8px;
    gap: 8px;
    justify-content: center;
  }
  .slide-tag::before { width: 20px; }
  .slide-desc {
    font-size: 0.82rem;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
  }
  .slide-actions {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
  }
  .btn-primary, .btn-outline-white {
    padding: 10px 20px;
    font-size: 0.78rem;
    width: 100%;
    justify-content: center;
  }
  .slider-btn { width: 38px; height: 38px; font-size: 1rem; }
  .prev { left: 8px; } .next { right: 8px; }
  .hero-badge { display: none; }
  .scroll-indicator { display: none; }
  .slide-counter { right: 12px; bottom: 16px; font-size: 0.7rem; }

  /* Other sections */
  .products-grid { grid-template-columns: 1fr; }
  .products-grid-big { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .cat-showcase-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-showcase-img { height: 160px; }
  .category-card.large { grid-column: span 1; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .directors-grid { grid-template-columns: 1fr; }
  .brand-story-img { height: 260px; }
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 36px; }
  .process-grid { flex-direction: column; align-items: center; gap: 24px; }
  .process-connector { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 40px 20px 30px; gap: 28px; }
}


/* ===== PRODUCTS PAGE ===== */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1); }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,6,2,0.65), rgba(10,6,2,0.45));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}
.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin: 12px 0 16px;
  line-height: 1.1;
}
.page-hero-content h1 span { color: var(--gold); }
.page-hero-content .section-tag { color: var(--gold); margin-bottom: 8px; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: rgba(255,255,255,0.75); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb span:last-child { color: var(--gold); font-weight: 600; }

/* Products section wrapper */
.products-page { padding: 64px 0 80px; }
.products-page-header {
  text-align: center;
  margin-bottom: 40px;
}
.products-page-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.products-page-header h2 span { color: var(--gold); }
.products-page-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.products-page-desc a { color: var(--gold); }

/* Filter chips */
.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.filter-chip:hover {
  border-color: var(--gold);
  color: var(--dark);
  background: rgba(201,168,76,0.07);
}
.filter-chip.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* Big product grid (3-col on desktop) */
.products-grid-big {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ===== SUBCATEGORY SHOWCASE ===== */
.subcat-section {
  background: var(--cream);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}
.subcat-section-header {
  text-align: center;
  margin-bottom: 36px;
}
.subcat-section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.subcat-section-header h2 span { color: var(--gold); }
.subcat-section-header p { color: var(--text-light); font-size: 0.92rem; }

.subcat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* Image card style */
.subcat-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--dark);
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(26,18,8,0.06);
}
.subcat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(26,18,8,0.14);
  border-color: var(--gold);
}
.subcat-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--cream2);
  flex-shrink: 0;
}
.subcat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.subcat-card:hover .subcat-card-img img {
  transform: scale(1.07);
}
.subcat-card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 16px;
  background: var(--dark);
  transition: background var(--transition);
}
.subcat-card:hover .subcat-card-label {
  background: var(--gold);
}
.subcat-card-name {
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
  transition: color var(--transition);
}
.subcat-card:hover .subcat-card-name {
  color: var(--dark);
}
.subcat-card-arrow {
  font-size: 0.9rem;
  color: var(--gold);
  transition: color var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.subcat-card:hover .subcat-card-arrow {
  color: var(--dark);
  transform: translateX(3px);
}

/* Filter row for subcategory chips */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}
.filter-row-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid-big { grid-template-columns: repeat(2, 1fr); }
  .subcat-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
@media (max-width: 640px) {
  .products-grid-big { grid-template-columns: 1fr; }
  .page-hero { height: 280px; }
  .subcat-section { padding: 40px 0 32px; }
  .subcat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .subcat-card-img { height: 130px; }
}


/* ===== CATEGORY CARD WITH SUBLINKS ===== */
.cat-showcase-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cat-sublinks {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}
.cat-sublink {
  display: block;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
}
.cat-sublink:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateX(2px);
}


/* ===== SUBCATEGORY BROWSE (category → subcat grid) ===== */
.subcat-browse-section {
  padding: 60px 0 80px;
  background: var(--cream);
}
.subcat-browse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.subcat-browse-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--dark);
  box-shadow: 0 2px 16px rgba(26,18,8,0.07);
  transition: var(--transition);
}
.subcat-browse-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(26,18,8,0.14);
  border-color: var(--gold);
}
.subcat-browse-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: var(--cream2);
}
.subcat-browse-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.subcat-browse-card:hover .subcat-browse-img img {
  transform: scale(1.06);
}
.subcat-browse-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--dark);
  transition: background var(--transition);
}
.subcat-browse-card:hover .subcat-browse-label {
  background: var(--gold);
}
.subcat-browse-name {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
}
.subcat-browse-card:hover .subcat-browse-name {
  color: var(--dark);
}
.subcat-browse-arrow {
  font-size: 1rem;
  color: var(--gold);
  transition: color var(--transition), transform var(--transition);
}
.subcat-browse-card:hover .subcat-browse-arrow {
  color: var(--dark);
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .subcat-browse-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .subcat-browse-grid { grid-template-columns: 1fr; }
  .subcat-browse-img  { height: 200px; }
}


/* ===== MOBILE NAVIGATION — handled inside @media (max-width: 768px) above ===== */

@media (max-width: 480px) {
  .nav-panel { width: 100%; max-width: 100%; }
  .header-tagline { font-size: 0.7rem; padding: 0 50px 0 12px; }
}


/* ===== DISABLED SUBCATEGORY CARD ===== */
.subcat-browse-disabled {
  cursor: not-allowed;
  /*opacity: 0.55;*/
  pointer-events: none;
  user-select: none;
}
.subcat-browse-disabled .subcat-browse-label {
  background: #6b7280;
}
.subcat-browse-disabled:hover {
  transform: none;
  box-shadow: 0 2px 16px rgba(26,18,8,0.07);
  border-color: var(--border);
}


/* ===== DISABLED DROPDOWN NAV ITEM ===== */
.nav-dropdown-disabled {
  display: block;
  padding: 11px 18px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.25);
  cursor: not-allowed;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  user-select: none;
}
.header-menu .dropdown li:last-child .nav-dropdown-disabled {
  border-bottom: none;
}


/* ===== WORLD MAP SECTION — old SVG version removed ===== */
/* ===== WORLD MAP SECTION (amCharts) ===== */
.world-map-section {
  background: #1a1208d6;
  padding: 80px 0 70px;
  overflow: hidden;
}
.world-map-header {
  text-align: center;
  margin-bottom: 40px;
}
.world-map-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.world-map-header h2 span { color: var(--gold); }
.world-map-header .section-tag { color: var(--gold); }
.world-map-header .section-desc {
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.95rem;
}
.world-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  margin-bottom: 32px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.4);
}
#worldMapChart {
  width: 100%;
  height: 500px;
  display: block;
}
.world-map-legend {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(201,168,76,0.1);
}
.wm-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}
.wm-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
  flex-shrink: 0;
}
.wm-legend-hq {
  width: 14px;
  height: 14px;
  box-shadow: 0 0 8px rgba(201,168,76,0.7);
  opacity: 1;
}
.world-map-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.wm-market {
  padding: 6px 16px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  background: rgba(201,168,76,0.06);
  transition: var(--transition);
  cursor: default;
}
.wm-market:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.12);
}

@media (max-width: 768px) {
  .world-map-section { padding: 56px 0 48px; }
  #worldMapChart { height: 320px; }
  .world-map-markets { gap: 8px; }
  .wm-market { font-size: 0.72rem; padding: 5px 12px; }
}
@media (max-width: 480px) {
  #worldMapChart { height: 240px; }
}


/* ===== CERT CARD AS ANCHOR TAG ===== */
a.cert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 20px 24px;
  text-decoration: none;
  color: var(--dark);
}
a.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}


/* ===== STATIC WORLD MAP IMAGE ===== */
.world-map-img-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #110c06;
}
.world-map-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.85;
  filter: sepia(0.3) hue-rotate(5deg) brightness(0.7);
}

/* Gold location pins */
.wm-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid rgba(255,245,214,0.8);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 6px rgba(201,168,76,0.7);
  cursor: default;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wm-pin:hover {
  transform: translate(-50%, -50%) scale(1.5);
  box-shadow: 0 0 12px rgba(201,168,76,1);
  z-index: 2;
}
/* HQ pin — larger with pulse */
.wm-pin-hq {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border: 2px solid #fff;
  box-shadow: 0 0 0 0 rgba(201,168,76,0.6);
  animation: pinPulse 2s ease-out infinite;
  z-index: 2;
}
@keyframes pinPulse {
  0%   { box-shadow: 0 0 0 0   rgba(201,168,76,0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(201,168,76,0);   }
  100% { box-shadow: 0 0 0 0   rgba(201,168,76,0);    }
}

@media (max-width: 768px) {
  .wm-pin     { width: 7px;  height: 7px;  border-width: 1.5px; }
  .wm-pin-hq  { width: 10px; height: 10px; border-width: 1.5px; }
}
@media (max-width: 480px) {
  .wm-pin     { width: 5px; height: 5px; }
  .wm-pin-hq  { width: 8px; height: 8px; }
}


/* ===== CERTIFICATES GRID (no slide) ===== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
}
.cert-grid .cert-card {
  width: 100%;
  max-width: 280px;
}
@media (max-width: 768px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cert-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}



@media (max-width: 900px) {
  .header-tagline {
    display: none !important;
  }
}