/* ==========================================================================
   KITCHENS PLANET — style.css
   Premium modular kitchen brand. Master stylesheet.
   Sections:
   00. Design Tokens / Root Variables
   01. Base & Reset
   02. Typography
   03. Buttons
   04. Utilities & Section Framing
   05. Preloader
   06. Navbar
   07. Hero
   08. Trusted Numbers (Counters)
   09. About
   10. Why Choose Us (Feature Cards)
   11. Product Categories
   12. Process Timeline
   13. Gallery
   14. Testimonials
   15. FAQ Accordion
   16. Contact CTA
   17. Footer
   18. Page Banner (inner pages)
   19. Breadcrumb
   20. Product Details
   21. Blog
   22. Contact Page
   23. Legal / 404
   24. Back To Top
   ========================================================================== */

/* ==========================================================================
   00. DESIGN TOKENS
   ========================================================================== */
:root {
  --gold: #C49A3A;
  --gold-soft: #d8b862;
  --gold-deep: #a37f27;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --white: #ffffff;
  --light: #f8f8f8;
  --muted: #6b6b6b;
  --line: #ececec;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-soft: 0 18px 50px rgba(17, 17, 17, 0.08);
  --shadow-hover: 0 28px 70px rgba(17, 17, 17, 0.14);
  --shadow-gold: 0 18px 40px rgba(196, 154, 58, 0.28);

  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   01. BASE & RESET
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .3s var(--ease); }
ul { list-style: none; }
section { position: relative; }

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

/* Accessible focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ==========================================================================
   02. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.18;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.display-hero {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  margin-bottom: 18px;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 620px;
}
.text-center .section-lead { margin-inline: auto; }

.text-gold { color: var(--gold) !important; }
.bg-light-soft { background: var(--light) !important; }
.bg-dark-brand { background: var(--dark) !important; }

/* ==========================================================================
   03. BUTTONS
   ========================================================================== */
.btn-premium {
  --btn-bg: var(--gold);
  --btn-fg: var(--white);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: none;
  border-radius: 60px;
  cursor: pointer;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  z-index: 1;
}
.btn-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
  z-index: -1;
}
.btn-premium:hover { color: var(--white); box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.btn-premium:hover::after { transform: translateY(0); }

.btn-outline-premium {
  --btn-fg: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--btn-fg);
  background: transparent;
  border: 1.5px solid var(--dark);
  border-radius: 60px;
  cursor: pointer;
  transition: all .4s var(--ease);
}
.btn-outline-premium:hover { background: var(--dark); color: var(--white); transform: translateY(-3px); }

.btn-ghost-light {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-light:hover { background: var(--white); color: var(--dark); border-color: var(--white); }

.btn-arrow i { transition: transform .35s var(--ease); }
.btn-premium:hover .btn-arrow i,
.btn-outline-premium:hover .btn-arrow i { transform: translateX(5px); }

/* ==========================================================================
   04. UTILITIES & SECTION FRAMING
   ========================================================================== */
.container-xl-custom { max-width: var(--container); margin-inline: auto; padding-inline: 20px; }

.section-pad { padding: clamp(70px, 9vw, 130px) 0; }
.section-pad-sm { padding: clamp(50px, 6vw, 90px) 0; }

.divider-line { height: 1px; background: var(--line); border: none; }

.badge-soft {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 40px;
  background: rgba(196, 154, 58, 0.1);
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: var(--font-head);
}

.glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   05. PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-mark {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--white);
  font-size: 1.1rem;
  text-transform: uppercase;
  position: relative;
}
.preloader-mark span { color: var(--gold); }
.preloader-bar {
  margin-top: 18px;
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
  border-radius: 4px;
}
.preloader-bar::after {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  width: 40%;
  background: var(--gold);
  animation: loadbar 1.1s infinite var(--ease);
}
@keyframes loadbar {
  0% { left: -40%; }
  100% { left: 100%; }
}

/* ==========================================================================
   06. NAVBAR
   ========================================================================== */
.navbar-brand-custom {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--dark);
  line-height: 1;
}
.navbar-brand-custom span { color: var(--gold); }
.navbar-brand-custom small {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--muted);
  margin-top: 4px;
}

.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all .45s var(--ease);
  background: transparent;
}
.main-nav.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(17,17,17,0.06);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--dark);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--dark);
  transition: all .35s var(--ease);
  display: block;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(84vw, 380px);
  height: 100vh;
  background: var(--dark);
  z-index: 1001;
  padding: 100px 36px 40px;
  transition: right .5s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-drawer.open { right: 0; }
.mobile-drawer a {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-drawer a:hover { color: var(--gold); padding-left: 8px; }
.mobile-drawer .btn-premium { margin-top: 24px; justify-content: center; }
.drawer-close {
  position: absolute;
  top: 28px; right: 28px;
  background: none; border: none;
  color: var(--white); font-size: 1.6rem;
  cursor: pointer;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
  z-index: 1000;
}
.nav-overlay.open { opacity: 1; visibility: visible; }

/* ==========================================================================
   07. HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.08);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,17,17,0.82) 0%, rgba(17,17,17,0.55) 45%, rgba(17,17,17,0.25) 100%);
  z-index: -1;
}
.hero-content { max-width: 720px; padding-top: 90px; }
.hero-eyebrow {
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 22px;
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: var(--font-head);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll .line {
  width: 1px; height: 46px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine { 0%,100%{opacity:.3;} 50%{opacity:1;} }

/* ==========================================================================
   08. TRUSTED NUMBERS (COUNTERS)
   ========================================================================== */
.stats-strip {
  background: var(--dark);
  color: var(--white);
}
.stat-item { text-align: center; padding: 20px; position: relative; }
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--gold);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.stat-num .plus { color: var(--gold); margin-left: 2px; }
.stat-label {
  margin-top: 12px;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  text-transform: uppercase;
}

/* ==========================================================================
   09. ABOUT
   ========================================================================== */
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.about-media .media-badge {
  position: absolute;
  bottom: -26px; right: -12px;
  background: var(--gold);
  color: var(--white);
  padding: 26px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  text-align: center;
}
.about-media .media-badge .big {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1;
}
.about-media .media-badge .sm {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  margin-top: 6px;
}
.about-list { margin-top: 26px; display: grid; gap: 14px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #3a3a3a;
}
.about-list i { color: var(--gold); font-size: 1.15rem; margin-top: 3px; }

/* ==========================================================================
   10. WHY CHOOSE US (FEATURE CARDS)
   ========================================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.feature-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--gold);
  background: rgba(196, 154, 58, 0.1);
  margin-bottom: 22px;
  transition: all .45s var(--ease);
}
.feature-card:hover .feature-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(-6deg);
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ==========================================================================
   11. PRODUCT CATEGORIES
   ========================================================================== */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: flex-end;
}
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.1) 60%, transparent 100%);
}
.cat-card:hover img { transform: scale(1.08); }
.cat-body { position: relative; z-index: 2; padding: 26px; color: var(--white); width: 100%; }
.cat-body h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.cat-body .cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all .4s var(--ease);
}
.cat-card:hover .cat-link { opacity: 1; transform: translateY(0); }

/* Compact chip grid for long category lists */
.cat-chip-wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  background: var(--white);
  transition: all .35s var(--ease);
}
.cat-chip i { color: var(--gold); }
.cat-chip:hover { background: var(--dark); color: var(--white); border-color: var(--dark); transform: translateY(-3px); }
.cat-chip:hover i { color: var(--gold-soft); }

/* ==========================================================================
   12. PROCESS TIMELINE
   ========================================================================== */
.process-wrap { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.process-step {
  text-align: center;
  padding: 20px;
  position: relative;
}
.process-num {
  width: 76px; height: 76px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--gold);
  border: 1.5px dashed rgba(196,154,58,0.5);
  background: var(--white);
  transition: all .45s var(--ease);
}
.process-step:hover .process-num {
  background: var(--gold);
  color: var(--white);
  border-style: solid;
  border-color: var(--gold);
  transform: scale(1.05);
}
.process-step h4 { font-size: 1.02rem; margin-bottom: 8px; }
.process-step p { font-size: 0.86rem; color: var(--muted); margin: 0; }
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 58px; right: -9px;
  width: 18px; height: 1px;
  background: rgba(196,154,58,0.4);
}

/* ==========================================================================
   13. GALLERY
   ========================================================================== */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 44px; }
.filter-btn {
  padding: 10px 24px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all .35s var(--ease);
}
.filter-btn.active,
.filter-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.masonry { columns: 3; column-gap: 20px; }
.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.masonry-item img { width: 100%; transition: transform .6s var(--ease); }
.masonry-item::after {
  content: "\F52A";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.6rem;
  background: rgba(17,17,17,0.35);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.masonry-item:hover img { transform: scale(1.07); }
.masonry-item:hover::after { opacity: 1; }
.masonry-item.hide { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.92);
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 30px;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: var(--radius-sm); }
.lightbox-close, .lightbox-nav {
  position: absolute;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: none;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background .3s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--gold); }
.lightbox-close { top: 28px; right: 28px; }
.lightbox-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   14. TESTIMONIALS
   ========================================================================== */
.testi-track-wrap { overflow: hidden; }
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform .6s var(--ease);
}
.testi-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.testi-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.95rem; letter-spacing: 2px; }
.testi-text { color: #333; font-size: 1rem; margin-bottom: 24px; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
}
.testi-person h5 { font-size: 0.98rem; margin: 0; }
.testi-person span { font-size: 0.82rem; color: var(--muted); }
.testi-nav { display: flex; gap: 12px; justify-content: center; margin-top: 40px; }
.testi-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  transition: all .35s var(--ease);
}
.testi-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ==========================================================================
   15. FAQ ACCORDION
   ========================================================================== */
.faq-wrap { max-width: 860px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .35s var(--ease);
}
.faq-item.active { box-shadow: var(--shadow-soft); border-color: transparent; }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 28px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--dark);
}
.faq-q i { color: var(--gold); transition: transform .4s var(--ease); flex-shrink: 0; }
.faq-item.active .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a p { padding: 0 28px 26px; color: var(--muted); margin: 0; }

/* ==========================================================================
   16. CONTACT CTA
   ========================================================================== */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(50px, 8vw, 90px);
  color: var(--white);
  text-align: center;
}
.cta-band .cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: -2;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(17,17,17,0.9), rgba(163,127,39,0.75));
  z-index: -1;
}
.cta-band h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 34px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   17. FOOTER
   ========================================================================== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.72); padding-top: 84px; }
.footer-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-brand span { color: var(--gold); }
.footer-col h4 {
  color: var(--white);
  font-size: 1.02rem;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: rgba(255,255,255,0.66); font-size: 0.94rem; }
.footer-col ul a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact-item i { color: var(--gold); font-size: 1.1rem; margin-top: 3px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: all .35s var(--ease);
}
.footer-social a:hover { background: var(--gold); transform: translateY(-4px); }
.newsletter-form { position: relative; margin-top: 18px; }
.newsletter-form input {
  width: 100%;
  padding: 14px 56px 14px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  position: absolute;
  right: 5px; top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: var(--white);
  cursor: pointer;
  transition: background .3s ease;
}
.newsletter-form button:hover { background: var(--gold-deep); }
.footer-bottom {
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  font-size: 0.86rem;
}
.footer-bottom a:hover { color: var(--gold); }

/* ==========================================================================
   18. PAGE BANNER (inner pages)
   ========================================================================== */
.page-banner {
  position: relative;
  padding: 190px 0 90px;
  color: var(--white);
  overflow: hidden;
}
.page-banner .banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: -2;
}
.page-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(17,17,17,0.85), rgba(17,17,17,0.5));
  z-index: -1;
}
.page-banner h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.6rem); }

/* ==========================================================================
   19. BREADCRUMB
   ========================================================================== */
.breadcrumb-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.breadcrumb-nav a:hover { color: var(--gold); }
.breadcrumb-nav .sep { color: var(--gold); }
.breadcrumb-nav .current { color: var(--white); }

/* ==========================================================================
   20. PRODUCT DETAILS
   ========================================================================== */
.pd-main-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.pd-thumbs img { border-radius: var(--radius-sm); cursor: pointer; border: 2px solid transparent; transition: border-color .3s ease; }
.pd-thumbs img.active, .pd-thumbs img:hover { border-color: var(--gold); }
.pd-price { font-family: var(--font-head); font-weight: 800; font-size: 1.8rem; color: var(--gold); }
.pd-features li { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.pd-features i { color: var(--gold); margin-top: 4px; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
.spec-table th { font-family: var(--font-head); font-weight: 600; width: 40%; color: var(--dark); background: var(--light); }

/* Forms (inquiry / contact) */
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.86rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,58,0.12);
}
.form-note { font-size: 0.82rem; color: var(--muted); }
.form-success {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(196,154,58,0.12);
  color: var(--gold-deep);
  font-size: 0.9rem;
  margin-top: 8px;
}
.form-success.show { display: block; }

/* ==========================================================================
   21. BLOG
   ========================================================================== */
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.blog-thumb { aspect-ratio: 16 / 10; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-body { padding: 26px; }
.blog-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; font-family: var(--font-head); }
.blog-meta i { color: var(--gold); margin-right: 5px; }
.blog-body h3 { font-size: 1.18rem; margin-bottom: 10px; line-height: 1.35; }
.blog-body h3 a:hover { color: var(--gold); }
.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
}
.blog-read i { transition: transform .35s var(--ease); }
.blog-card:hover .blog-read i { transform: translateX(5px); }

/* Blog sidebar */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 26px;
}
.sidebar-card h4 { font-size: 1.1rem; margin-bottom: 20px; }
.search-box { position: relative; }
.search-box input {
  width: 100%; padding: 13px 46px 13px 16px;
  border: 1px solid var(--line);
  border-radius: 50px;
  font-family: var(--font-body);
}
.search-box button {
  position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%; border: none;
  background: var(--gold); color: var(--white); cursor: pointer;
}
.cat-list li { border-bottom: 1px solid var(--line); }
.cat-list li:last-child { border-bottom: none; }
.cat-list a {
  display: flex; justify-content: space-between;
  padding: 12px 0; font-size: 0.94rem;
}
.cat-list a:hover { color: var(--gold); padding-left: 5px; }
.cat-list span { color: var(--muted); font-size: 0.82rem; }
.recent-post { display: flex; gap: 14px; margin-bottom: 18px; }
.recent-post img { width: 74px; height: 74px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.recent-post h6 { font-size: 0.9rem; line-height: 1.4; margin-bottom: 4px; }
.recent-post h6 a:hover { color: var(--gold); }
.recent-post span { font-size: 0.78rem; color: var(--muted); }

/* Blog article body */
.article-body { font-size: 1.05rem; color: #333; }
.article-body h2 { font-size: 1.7rem; margin: 38px 0 16px; }
.article-body h3 { font-size: 1.3rem; margin: 30px 0 12px; }
.article-body p { margin-bottom: 20px; }
.article-body ul { margin: 0 0 22px 0; display: grid; gap: 10px; }
.article-body ul li { display: flex; gap: 10px; align-items: flex-start; }
.article-body ul li::before { content: "\F270"; font-family: "bootstrap-icons"; color: var(--gold); }
.article-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 6px 24px;
  margin: 28px 0;
  font-style: italic;
  color: var(--dark);
  background: var(--light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-hero-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 34px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-cloud a {
  padding: 7px 16px; border: 1px solid var(--line);
  border-radius: 50px; font-size: 0.82rem;
}
.tag-cloud a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ==========================================================================
   22. CONTACT PAGE
   ========================================================================== */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  height: 100%;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.contact-info-card .ci-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(196,154,58,0.1);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.contact-info-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.contact-info-card p { color: var(--muted); font-size: 0.94rem; margin: 0; }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 380px;
  background: var(--light);
  position: relative;
  display: grid;
  place-items: center;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; min-height: 380px; }

/* ==========================================================================
   23. LEGAL / 404
   ========================================================================== */
.legal-body h2 { font-size: 1.5rem; margin: 34px 0 14px; }
.legal-body p { margin-bottom: 18px; color: #444; }
.legal-body ul { margin: 0 0 22px 22px; list-style: disc; color: #444; display: grid; gap: 8px; }

.error-wrap { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 120px 20px; }
.error-code {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(6rem, 20vw, 13rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   24. BACK TO TOP
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  border: none;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all .4s var(--ease);
  z-index: 900;
  box-shadow: var(--shadow-gold);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--dark); transform: translateY(-4px); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::after, *::before { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
