  
* {
  cursor: default !important;
}

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

:root {
  --bg: #F3F6F9;
  --cream: #F3F6F9;
  --warm-white: #F3F6F9;
  --surface: #FFFFFF;
  --surface-muted: #E8EEF4;
  --stone: #D5DCE5;
  --sand: #D5DCE5;
  --taupe: #5B6B7C;
  --muted: #5B6B7C;
  --ink: #1A2332;
  --charcoal: #1A2332;
  --accent: #0B5C8A;
  --accent-soft: #D6E6F0;
  --light-accent: #D6E6F0;
  --primary: #0B5C8A;
  --primary-dark: #084A6E;
  --ice: #D6E6F0;
  --white: #FFFFFF;
  --gray: #5B6B7C;
  --border: #D5DCE5;
  --white-text: #FFFFFF;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius: 12px;
  --shadow: 0 8px 28px rgba(26, 35, 50, 0.08);
  --shadow-hover: 0 14px 40px rgba(26, 35, 50, 0.12);
}
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}
body.has-custom-cursor { cursor: none; }
body.has-custom-cursor a,
body.has-custom-cursor button { cursor: none; }

/* ─── CUSTOM CURSOR ─────────────────────────────── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
}
.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
}
body:hover .cursor { opacity: 1; }

/* ─── NAV ────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease;
  background-color: white;
}
nav.scrolled {
  background: rgba(253,252,250,0.92);
  backdrop-filter: blur(12px);
  padding: 16px 60px;
  border-bottom: 1px solid var(--stone);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 60px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 20px !important;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.nav-cta:hover { background: var(--charcoal); color: var(--warm-white); }

 
/* =========================
   HERO SECTION
========================= */

/* HERO SECTION */
#home{
    width:100%;
    margin-top:90px; /* Navbar height */
    overflow:hidden;
}

.hero-bg-tile{
    width:100%;
    display:block;
}

.hero-bg-tile img{
    width:100%;
    height:auto;
    display:block;
    max-width:100%;
}

/* Remove all zoom effects */
.hero-bg-tile:hover img{
    transform:none !important;
}

@media(max-width:768px){
    #home{
        margin-top:80px;
    }
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-left:auto;
  margin-right:80px;
  max-width:520px;
  color:white;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s ease 0.6s forwards;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.hero-title {
color:white;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-subtitle {
color:white;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s ease 1.1s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--charcoal);
  color: var(--warm-white);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
.btn-primary svg { transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--charcoal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.btn-ghost:hover::after { transform: scaleX(1); transform-origin: left; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.scroll-line {
  width: 60px;
  height: 1px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollAnim 2s ease infinite 2s;
}
.scroll-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: black;
}
.hero-stat-panel {
  position: absolute;
  right: 60px;
  bottom: 60px;
  display: flex;
  gap: 48px;
  opacity: 0;
  animation: fadeIn 1s ease 1.3s forwards;
}
.hero-stat { text-align: right; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: white;
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: black;
  margin-top: 6px;
}

/* ─── MARQUEE ────────────────────────────────────── */
.marquee-section {
  background: var(--charcoal);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--sand);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}
.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─── SECTION COMMONS ───────────────────────────── */
/* section { padding: 120px 0; } */

.section-tag {
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 90px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--light-accent);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
}
.section-heading em { font-style: italic; color: var(--accent); }

/* ─── CATEGORIES ─────────────────────────────────── */
.categories-section { 
  
  
  background: var(--warm-white); }

  
.categories-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 20px;
}
.categories-header-text {
  max-width: 500px;
  text-align: center;
  margin-top: 150px;
  margin-bottom: -50px;
}
.categories-header p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--taupe);
  margin-top: 16px;
  max-width: 380px;
}
.categories-view-all {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--light-accent);
  padding-bottom: 4px;
  transition: gap 0.3s ease;
  white-space: nowrap;
  margin-bottom: 6px;
}
.categories-view-all {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.categories-view-all:hover { gap: 18px; }
.categories-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  cursor: none;
  text-decoration: none;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.cat-item.visible { opacity: 1; transform: translateY(0); }
.cat-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 2px solid var(--stone);
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.cat-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(44,42,39,0.2);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cat-item:hover .cat-circle {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(44,42,39,0.12);
}
.cat-item:hover .cat-circle::before { opacity: 1; }
.cat-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cat-item:hover .cat-circle img { transform: scale(1.12); }
.cat-circle-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color 0.4s ease;
}
.cat-item:hover .cat-circle-ring { border-color: var(--light-accent); }
.cat-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 400;
  transition: color 0.3s ease;
}
.cat-item:hover .cat-label { color: var(--accent); }
.cat-count {
  font-size: 11px;
  color: var(--taupe);
  margin-top: -12px;
}

/* ─── FEATURED ───────────────────────────────────── */
.featured-section { background: var(--cream); padding: 40px 0; }
.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  padding: 20px 20px;
}
.featured-image-side { position: relative; overflow: hidden; }
.featured-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.8s ease;
}
.featured-image-side:hover img { transform: scale(1); }
.featured-image-overlay {
  position: absolute;
  bottom: 40px;
  right: -20px;
  background: var(--warm-white);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 40px rgba(44,42,39,0.1);
}
.featured-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-badge-text h4 { font-size: 14px; font-weight: 500; }
.featured-badge-text p { font-size: 12px; color: var(--taupe); margin-top: 3px; }
.featured-content-side {
  padding: 80px 80px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-content-side .section-heading { margin-bottom: 24px; }
.featured-content-side p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--taupe);
  margin-bottom: 40px;
}
.featured-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.spec-item {
  border-left: 2px solid var(--stone);
  padding-left: 16px;
}
.spec-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}
.spec-value {
  font-size: 15px;
  color: var(--charcoal);
  margin-top: 4px;
  font-weight: 400;
}

/* ─── COLLECTIONS GRID ───────────────────────────── */
.collections-section { background: var(--warm-white); }
.collections-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 64px;
}
.col-card {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.col-card.large { grid-row: span 2; }
.col-card-img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.7s ease;
  filter: brightness(0.85);
}
.col-card.large .col-card-img { min-height: 540px; }
.col-card:hover .col-card-img {
  transform: scale(1.0);
  filter: brightness(0.75);
}
.col-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 28px 28px;
  background: rgba(26, 35, 50, 0.88);
  color: white;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}
.col-card:hover .col-card-label { transform: translateY(0); }
.col-card-label h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
}
.col-card.large .col-card-label h3 { font-size: 32px; }
.col-card-label p {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 6px;
  letter-spacing: 0.06em;
}
.col-card-label .explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-top: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
  text-decoration: none;
}
.col-card:hover .explore-link { opacity: 1; transform: translateY(0); }

/* ─── WHY US ─────────────────────────────────────── */
.why-section { background: var(--charcoal); color: var(--warm-white); }
.why-section .section-tag { color: var(--light-accent); }
.why-section .section-tag::before { background: var(--taupe); }
.why-section .section-heading { color: white; }
.why-section .section-heading em { color: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 72px;
  background: rgba(255,255,255,0.06);
}
.why-card {
  padding: 48px 36px;
  background: var(--charcoal);
  transition: background 0.4s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { background: rgba(255,255,255,0.04); }
.why-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: border-color 0.4s ease;
}
.why-card:hover .why-icon { border-color: var(--light-accent); }
.why-icon svg { stroke: var(--light-accent); }
.why-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 14px;
  color: var(--warm-white);
}
.why-card p { font-size: 14px; line-height: 1.7; color: rgba(212,204,191,0.7); }

/* ─── TESTIMONIALS ───────────────────────────────── */
.testimonials-section { background: var(--cream); }
.testimonials-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}
.testimonials-nav { position: sticky; top: 120px; }
.testimonials-nav p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--taupe);
  margin-top: 16px;
  margin-bottom: 40px;
}
.testi-dots { display: flex; gap: 10px; }
.testi-dot {
  width: 28px;
  height: 2px;
  background: var(--stone);
  cursor: none;
  transition: background 0.3s ease, width 0.3s ease;
  border: none;
}
.testi-dot.active { background: var(--accent); width: 48px; }
.testimonials-cards { display: flex; flex-direction: column; gap: 24px; }
.testi-card {
  background: var(--warm-white);
  padding: 40px;
  border-left: 2px solid var(--stone);
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.4s ease;
}
.testi-card.visible { opacity: 1; transform: translateX(0); }
.testi-card:hover { border-color: var(--accent); transform: translateX(8px); }
.testi-quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--stone);
  overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 14px; font-weight: 500; }
.testi-role { font-size: 12px; color: var(--taupe); margin-top: 3px; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.star { width: 12px; height: 12px; fill: var(--accent); }

/* ─── CTA ────────────────────────────────────────── */
.cta-section { position: relative; overflow: hidden; background: var(--cream); padding: 0; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.cta-image { position: relative; overflow: hidden; }
.cta-image img { width: 100%; height: 100%; object-fit: cover; }
.cta-content {
  background: var(--charcoal);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cta-content::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 300px;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: -60px;
  right: 40px;
  line-height: 1;
  pointer-events: none;
}
.cta-content .section-heading { color: var(--warm-white); margin-bottom: 20px; }
.cta-content p {
  color: rgba(212,204,191,0.8);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 380px;
}
.cta-form { display: flex; gap: 0; max-width: 400px; }
.cta-form input {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--warm-white);
  outline: none;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.35); }
.cta-form input:focus { border-color: rgba(255,255,255,0.35); }
.cta-form button {
  padding: 14px 28px;
  background: var(--accent);
  border: none;
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.cta-form button:hover { background: #7a6347; }

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--charcoal);
  padding: 80px 60px 40px;
  color: rgba(212,204,191,0.7);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 16px;
}
.footer-brand-logo span { color: var(--light-accent); }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--light-accent);
  margin-bottom: 24px;
}
.footer-about { font-size: 13px; line-height: 1.7;color: white; }
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 24px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  font-size: 13px;
  color: rgba(212,204,191,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col ul a:hover { color: var(--light-accent); }
.footer-bottom {
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212,204,191,0.6);
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.footer-social a:hover { border-color: var(--light-accent); color: var(--light-accent); }

/* ─── TILE DIVIDER ───────────────────────────────── */
.tile-divider {
  height: 20px;
  background-image: none;
  background-color: var(--surface-muted);
  opacity: 1;
}

/* ─── SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }



/* ─── KEYFRAME ANIMATIONS ────────────────────────── */
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollAnim {
  0%   { left: -100%; }
  100% { left: 100%; }
}

.section-tag::before { display: none !important; }

.footer-col ul a {
    color: #ffffff !important; /* Change #ffffff to whatever color you want */
}

/* 1. Make Navbar Pure White when scrolled */
nav.scrolled {
  background: #FFFFFF !important;
}

/* 2. Force Primary Button Text to Pure White */
.btn-primary {
  color: #FFFFFF !important;
}

/* 3. Deep Blue Hover for Primary Buttons */
.btn-primary:hover {
  background: #0D47A1 !important;
}

/* 4. Ice Blue Background Hover for secondary items (like cards/lists) */
/* .why-card:hover, .testi-card:hover {
  background: #F1F8FF !important;
  color: #202124 !important;
} */

.why-card  p{
  color: white;
}

.categories-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 40px 32px !important; /* Adds a 40px gap between rows and 32px between columns */
}

/* 1. Remove gradient overlay from the Hero banner and replace with solid Soft Light Blue tint */
.hero-overlay {
    background: rgba(230, 240, 250, 0.8) !important; 
}

/* 2. Remove gradient from Collection Card labels and switch to a solid charcoal-to-black backing */
.col-card-label {
    background: rgba(44, 42, 39, 0.85) !important;
}

/* 3. Remove repeating gradient lines from Tile Divider blocks and turn them into a clean solid background */
.tile-divider {
    background-image: none !important;
    background-color: #DADCE0 !important; /* Solid Light Gray */
    height: 20px !important;              /* Shrinks the space down slightly so it looks cleaner without the tile pattern */
}


  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --bg:           #EEF4FB;
    --white:        #FFFFFF;
    --primary:      #2563EB;
    --primary-dark: #1D4ED8;
    --ice:          #DBEAFE;
    --charcoal:     #1F2937;
    --gray:         #6B7280;
    --border:       #E5E7EB;
    --white-text:   #FFFFFF;
    --font-display: 'Montserrat', sans-serif;
    --font-body:    'Open Sans', sans-serif;
    --radius:       12px;
    --shadow:       0 4px 24px rgba(37,99,235,0.08);
    --shadow-hover: 0 12px 40px rgba(37,99,235,0.16);
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); background: var(--bg); color: var(--charcoal); }

  /* NAVBAR */
  .navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 60px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(37,99,235,0.06);
  }
  .nav-logo { font-family: var(--font-display); font-size: 24px; font-weight: 400; color: var(--charcoal); text-decoration: none; letter-spacing: 0.04em; }
  .nav-logo span { color: var(--primary); }
  .nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
  .nav-links a { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--primary); }
  .nav-cart {
    display: flex; align-items: center; gap: 8px;
    background: var(--primary); color: var(--white-text);
    padding: 9px 20px; border-radius: 6px; font-size: 13px; font-weight: 500;
    text-decoration: none; letter-spacing: 0.06em; transition: background 0.2s; cursor: pointer; border: none;
  }
  .nav-cart:hover { background: var(--primary-dark); }
  .cart-count { background: var(--white); color: var(--primary); border-radius: 50%; width: 20px; height: 20px; font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }

  /* BREADCRUMB */
  .breadcrumb { padding: 20px 60px 0; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); }
  .breadcrumb a { color: var(--primary); text-decoration: none; }
  .breadcrumb a:hover { text-decoration: underline; }
  .breadcrumb-sep { color: var(--border); }

  /* CATEGORY HERO */
  .category-hero {
    padding: 48px 60px 36px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 24px;
  }
  .category-hero-text { flex: 1; min-width: 0; }
  .category-icon { font-size: 36px; margin-bottom: 10px; display: block; }
  .category-hero-img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 0;
    display: block;
    border: none;
    flex-shrink: 0;
    background: var(--surface-muted, #E8EEF4);
  }
  .cat-chip-img { width: 22px; height: 22px; object-fit: cover; border-radius: 999px; flex-shrink: 0; }
  .category-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 600; color: var(--charcoal); line-height: 1.15; margin: 0; }
  .category-title em { font-style: normal; color: var(--primary); margin-left: 0.25em; }
  .category-desc { font-size: 15px; color: var(--gray); margin-top: 10px; max-width: 560px; line-height: 1.7; }
  .category-meta { font-size: 13px; color: var(--gray); margin-top: 10px; }
  .category-meta strong { color: var(--primary); }

  /* FILTER + SORT BAR */
  .controls-bar { padding: 0 60px 32px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
  .filter-btn {
    padding: 8px 18px; border-radius: 999px; border: 1.5px solid var(--border);
    background: var(--white); font-family: var(--font-body); font-size: 13px;
    color: var(--gray); cursor: pointer; transition: all 0.2s;
  }
  .filter-btn:hover, .filter-btn.active { background: var(--ice); border-color: var(--primary); color: var(--primary); }
  .sort-select {
    margin-left: auto; padding: 8px 14px; border-radius: 6px;
    border: 1.5px solid var(--border); background: var(--white);
    font-family: var(--font-body); font-size: 13px; color: var(--charcoal);
    cursor: pointer; outline: none;
  }
  .sort-select:focus { border-color: var(--primary); }

  /* PRODUCT GRID */
  .products-grid { padding: 0 60px 80px; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

  /* PRODUCT CARD */
  .product-card {
    background: var(--white); border-radius: var(--radius); border: 1px solid var(--border);
    overflow: hidden; transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.2s;
    cursor: pointer; text-decoration: none; color: inherit; display: flex; flex-direction: column;
  }
  .product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); background: var(--ice); border-color: var(--primary); }
  .product-card-img-wrap {
    overflow: hidden;
    position: relative;
    aspect-ratio: 3 / 4;
    background: var(--surface-muted, #E8EEF4);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 16px;
    display: block;
    transition: transform 0.5s ease;
  }
  .product-card:hover .product-card-img { transform: scale(1.03); }
  .product-badge { position: absolute; top: 14px; left: 14px; background: var(--primary); color: var(--white-text); font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
  .product-card-body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; }
  .product-card-name { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--charcoal); margin-bottom: 8px; line-height: 1.2; }
  .product-card-desc { font-size: 13px; color: var(--gray); line-height: 1.6; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .product-card-footer { margin-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  .product-card-price { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--primary); }
  .btn-view { padding: 9px 18px; background: var(--primary); color: var(--white-text); border: none; border-radius: 6px; font-family: var(--font-body); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, transform 0.2s; text-decoration: none; display: inline-block; }
  .btn-view:hover { background: var(--primary-dark); transform: translateY(-1px); }

  /* EMPTY STATE */
  .empty-state { grid-column: 1 / -1; text-align: center; padding: 80px 20px; color: var(--gray); }
  .empty-state h3 { font-family: var(--font-display); font-size: 28px; font-weight: 300; margin-bottom: 12px; color: var(--charcoal); }

  /* ALL CATEGORIES STRIP */
  .all-categories { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 60px; display: flex; gap: 16px; overflow-x: auto; }
  .cat-chip { display: flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 999px; background: var(--bg); border: 1.5px solid var(--border); font-size: 13px; color: var(--charcoal); text-decoration: none; white-space: nowrap; transition: all 0.2s; }
  .cat-chip:hover, .cat-chip.active { background: var(--ice); border-color: var(--primary); color: var(--primary); }

  /* FOOTER */
  footer { background: var(--charcoal); color: rgba(255,255,255,0.6); padding: 40px 60px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 16px; }
  footer .logo { font-family: var(--font-display); font-size: 22px; color: #fff; }
  footer .logo span { color: #93C5FD; }
  footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
  footer a:hover { color: #fff; }

  /* TOAST */
  .toast { position: fixed; bottom: 32px; right: 32px; background: var(--charcoal); color: #fff; padding: 14px 24px; border-radius: 8px; font-size: 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.2); transform: translateY(80px); opacity: 0; transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1); z-index: 9999; display: flex; align-items: center; gap: 10px; }
  .toast.show { transform: translateY(0); opacity: 1; }
  .toast-icon { color: #34D399; font-size: 16px; }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .navbar, .breadcrumb, .category-hero, .controls-bar, .products-grid, .all-categories, footer { padding-left: 20px; padding-right: 20px; }
    .nav-links { display: none; }
    .category-hero { flex-direction: row; align-items: center; }
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --bg:           #EEF4FB;
    --white:        #FFFFFF;
    --primary:      #2563EB;
    --primary-dark: #1D4ED8;
    --ice:          #DBEAFE;
    --charcoal:     #1F2937;
    --gray:         #6B7280;
    --border:       #E5E7EB;
    --white-text:   #FFFFFF;
    --font-display: 'Montserrat', sans-serif;
    --font-body:    'Open Sans', sans-serif;
    --radius:       12px;
    --shadow-hover: 0 12px 40px rgba(37,99,235,0.16);
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); background: var(--bg); color: var(--charcoal); }

  /* NAVBAR */
  .navbar { background: var(--white); border-bottom: 1px solid var(--border); padding: 0 60px; height: 68px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(37,99,235,0.06); }
  .nav-logo { font-family: var(--font-display); font-size: 24px; font-weight: 400; color: var(--charcoal); text-decoration: none; letter-spacing: 0.04em; }
  .nav-logo span { color: var(--primary); }
  .nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
  .nav-links a { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--primary); }
  .nav-cart { display: flex; align-items: center; gap: 8px; background: var(--primary); color: var(--white-text); padding: 9px 20px; border-radius: 6px; font-size: 13px; font-weight: 500; text-decoration: none; letter-spacing: 0.06em; transition: background 0.2s; cursor: pointer; border: none; }
  .nav-cart:hover { background: var(--primary-dark); }
  .cart-count { background: var(--white); color: var(--primary); border-radius: 50%; width: 20px; height: 20px; font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }

  /* BREADCRUMB */
  .breadcrumb { padding: 20px 60px 0; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); flex-wrap: wrap; }
  .breadcrumb a { color: var(--primary); text-decoration: none; }
  .breadcrumb a:hover { text-decoration: underline; }
  .breadcrumb-sep { color: var(--border); }

  /* PRODUCT LAYOUT */
  .product-layout { max-width: 1200px; margin: 0 auto; padding: 40px 60px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

  /* IMAGE PANEL */
  .main-image-wrap { border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--border); position: relative; }
  .main-image {
    width: 100%;
    height: auto;
    min-height: 420px;
    max-height: 560px;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 24px;
    background: var(--surface-muted, #E8EEF4);
    transition: transform 0.6s ease;
  }
  .main-image-wrap:hover .main-image { transform: scale(1.02); }
  .product-badge-lg { position: absolute; top: 20px; left: 20px; background: var(--primary); color: var(--white-text); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 6px; }
  .thumb-row { display: flex; gap: 12px; margin-top: 14px; }
  .thumb-img { width: 80px; height: 64px; object-fit: cover; border-radius: 8px; border: 2px solid var(--border); cursor: pointer; transition: border-color 0.2s, transform 0.2s; flex-shrink: 0; }
  .thumb-img:hover, .thumb-img.active { border-color: var(--primary); transform: scale(1.05); }

  /* DETAIL PANEL */
  .product-category-link { display: inline-block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); text-decoration: none; background: var(--ice); padding: 5px 12px; border-radius: 4px; margin-bottom: 16px; transition: background 0.2s; }
  .product-category-link:hover { background: #BFDBFE; }
  .product-name { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 300; color: var(--charcoal); line-height: 1.1; margin-bottom: 20px; }
  .product-name em { font-style: italic; color: var(--primary); }
  .product-price { font-family: var(--font-display); font-size: 36px; font-weight: 400; color: var(--primary); margin-bottom: 8px; }
  .product-price-note { font-size: 12px; color: var(--gray); margin-bottom: 24px; }
  .divider { height: 1px; background: var(--border); margin: 24px 0; }
  .product-description { font-size: 15px; line-height: 1.8; color: var(--gray); margin-bottom: 28px; }

  /* SPECS */
  .specs-heading { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 14px; }
  .specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
  .spec-cell { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px; transition: background 0.2s, border-color 0.2s; }
  .spec-cell:hover { background: var(--ice); border-color: var(--primary); }
  .spec-cell-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); }
  .spec-cell-value { font-size: 15px; color: var(--charcoal); font-weight: 500; margin-top: 4px; }

  /* QTY + ACTIONS */
  .qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
  .qty-label { font-size: 13px; color: var(--gray); min-width: 60px; }
  .qty-control { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--white); }
  .qty-btn { width: 40px; height: 40px; border: none; background: transparent; font-size: 18px; color: var(--charcoal); cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
  .qty-btn:hover { background: var(--ice); }
  .qty-input { width: 48px; height: 40px; border: none; text-align: center; font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--charcoal); outline: none; background: transparent; }
  .actions-row { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-add-cart { flex: 1; min-width: 160px; padding: 14px 28px; background: var(--primary); color: var(--white-text); border: none; border-radius: 8px; font-family: var(--font-body); font-size: 14px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
  .btn-add-cart:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.25); }
  .btn-add-cart:active { transform: translateY(0); }
  .btn-enquiry { padding: 14px 28px; background: transparent; color: var(--primary); border: 1.5px solid var(--primary); border-radius: 8px; font-family: var(--font-body); font-size: 14px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, color 0.2s; }
  .btn-enquiry:hover { background: var(--ice); }
  .trust-row { display: flex; gap: 20px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); flex-wrap: wrap; }
  .trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray); }
  .trust-item-icon { font-size: 16px; }

  /* RELATED */
  .related-section { max-width: 1200px; margin: 0 auto; padding: 0 60px 80px; }
  .related-heading { font-family: var(--font-display); font-size: 32px; font-weight: 300; color: var(--charcoal); margin-bottom: 28px; }
  .related-heading em { font-style: italic; color: var(--primary); }
  .related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
  .related-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow 0.3s, transform 0.3s, background 0.2s, border-color 0.2s; display: flex; flex-direction: column; }
  .related-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); background: var(--ice); border-color: var(--primary); }
  .related-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    object-fit: contain;
    object-position: center;
    padding: 14px;
    background: var(--surface-muted, #E8EEF4);
  }
  .related-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
  .related-card-name { font-family: var(--font-display); font-size: 17px; font-weight: 400; margin-bottom: 8px; }
  .related-card-price { font-size: 16px; color: var(--primary); font-family: var(--font-display); }

  /* NOT FOUND */
  .not-found { text-align: center; padding: 120px 60px; color: var(--gray); }
  .not-found h2 { font-family: var(--font-display); font-size: 40px; font-weight: 300; color: var(--charcoal); margin-bottom: 16px; }
  .not-found a { color: var(--primary); }

  /* FOOTER */
  footer { background: var(--charcoal); color: rgba(255,255,255,0.6); padding: 40px 60px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 16px; }
  footer .logo { font-family: var(--font-display); font-size: 22px; color: #fff; }
  footer .logo span { color: #93C5FD; }
  footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
  footer a:hover { color: #fff; }

  /* TOAST */
  .toast { position: fixed; bottom: 32px; right: 32px; background: var(--charcoal); color: #fff; padding: 14px 24px; border-radius: 8px; font-size: 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.2); transform: translateY(80px); opacity: 0; transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1); z-index: 9999; display: flex; align-items: center; gap: 10px; }
  .toast.show { transform: translateY(0); opacity: 1; }
  .toast-icon { color: #34D399; font-size: 16px; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .product-layout { grid-template-columns: 1fr; padding: 24px 20px 60px; gap: 32px; }
    .related-section { padding: 0 20px 60px; }
    .navbar, footer { padding-left: 20px; padding-right: 20px; }
    .breadcrumb { padding-left: 20px; }
    .nav-links { display: none; }
    .main-image { min-height: 280px; max-height: 400px; padding: 16px; }
  }
  .blog-section{

padding:120px 60px;
background:#111827;
color:white;

}



.blog-header{

text-align:center;
max-width:700px;
margin:auto;
margin-bottom:70px;

}



.blog-header span{

font-size:12px;
letter-spacing:.35em;
color:#60a5fa;

}



.blog-header h2{

font-family:var(--font-display);
font-size:60px;
font-weight:300;
margin:20px 0;

}



.blog-header em{

color:#60a5fa;
font-style:italic;

}



.blog-header p{

color:#cbd5e1;
line-height:1.8;
font-size:16px;

}





.blog-container{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;

}




.blog-card{

background:#1f2937;
border-radius:18px;
overflow:hidden;
transition:.4s;

}



.blog-card:hover{

transform:translateY(-12px);
box-shadow:0 25px 50px rgba(0,0,0,.4);

}





.blog-image{

height:300px;
overflow:hidden;

}



.blog-image img{

width:100%;
height:100%;
object-fit:cover;
transition:.7s;

}



.blog-card:hover img{

transform:scale(1.08);

}





.blog-content{

padding:35px;

}




.blog-content small{

color:#60a5fa;
letter-spacing:.2em;
font-size:11px;

}




.blog-content h3{

font-family:var(--font-display);
font-size:32px;
font-weight:400;
line-height:1.2;
margin:20px 0;

}




.blog-content p{

color:#cbd5e1;
line-height:1.7;

}





.blog-content a{

display:inline-block;
margin-top:20px;

color:white;
text-decoration:none;

letter-spacing:.1em;
font-size:13px;

}




.blog-content a:hover{

color:#60a5fa;

}





@media(max-width:900px){


.blog-section{

padding:80px 25px;

}


.blog-container{

grid-template-columns:1fr;

}


.blog-header h2{

font-size:42px;

}

}

.home-products{
    /* padding:120px 60px; */
    background:#f7f5f1;
}


.section-title{
    text-align:center;
    margin-bottom:70px;
}


.section-title span{
    color:#2563eb;
    letter-spacing:.3em;
    font-size:11px;
}


.section-title h2{

    font-family:var(--font-display);
    font-size:60px;
    font-weight:300;
    color:#1f2937;

}


.section-title em{

    color:#2563eb;
    font-style:italic;

}


.section-title p{

    color:#666;

}





.home-product-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}



.home-product-card{

background:white;
overflow:hidden;
transition:.4s;
}



.home-product-card:hover{

transform:translateY(-10px);

box-shadow:
0 25px 50px rgba(0,0,0,.12);

}



.home-product-card img{

width:100%;
height:260px;
object-fit:cover;

}



.home-product-info{

padding:25px;

}



.home-product-info h3{

font-family:var(--font-display);
font-size:28px;
font-weight:400;

}



.home-product-info p{

color:#2563eb;
font-weight:500;

}



.product-btn{

display:inline-block;
margin-top:15px;
text-decoration:none;
color:#111;
font-size:13px;
letter-spacing:.1em;

}





@media(max-width:900px){

.home-product-grid{

grid-template-columns:1fr 1fr;

}

}



@media(max-width:600px){

.home-product-grid{

grid-template-columns:1fr;

}

}


/* inspiration-section css */

.inspiration-section{
    background: var(--cream);
    padding:80px 0;
}

.section-title{
    font-family: var(--font-display);
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom:30px;
    line-height:1.2;
}

.inspiration-card{
  border-radius: 30px;
}



.inspiration-img{
    width:100%;
    height:350px;
    object-fit:cover;
}

.card-title{
    font-size:24px;
    font-weight:400;
    color:#222;
}

.card-desc{
    font-size:18px;
    color:#666;
    margin:20px 0 30px;
}

.btn-outline-dark{
    border:1px solid #000;
    border-radius:0;
    padding:12px 45px;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:.3s;
}

.btn-outline-dark:hover{
    background:#000;
    color:#fff;
}

@media(max-width:991px){

    .section-title{
        font-size:40px;
    }

    .inspiration-img{
        height:400px;
    }
}

@media(max-width:768px){

    .section-title{
        font-size:32px;
    }

    .inspiration-img{
        height:320px;
    }
}


/* ============================================================
   2026 UI POLISH — sanitaryware solid palette overrides
   ============================================================ */

:root {
  --bg: #F3F6F9 !important;
  --cream: #F3F6F9 !important;
  --warm-white: #F3F6F9 !important;
  --surface: #FFFFFF !important;
  --surface-muted: #E8EEF4 !important;
  --stone: #D5DCE5 !important;
  --sand: #D5DCE5 !important;
  --taupe: #5B6B7C !important;
  --muted: #5B6B7C !important;
  --ink: #1A2332 !important;
  --charcoal: #1A2332 !important;
  --accent: #0B5C8A !important;
  --accent-soft: #D6E6F0 !important;
  --light-accent: #D6E6F0 !important;
  --primary: #0B5C8A !important;
  --primary-dark: #084A6E !important;
  --ice: #D6E6F0 !important;
  --white: #FFFFFF !important;
  --gray: #5B6B7C !important;
  --border: #D5DCE5 !important;
  --shadow: 0 8px 28px rgba(26, 35, 50, 0.08) !important;
  --shadow-hover: 0 14px 40px rgba(26, 35, 50, 0.12) !important;
}

/* Hide custom cursor unless opted-in */
.cursor, .cursor-follower { display: none; }
body.has-custom-cursor .cursor,
body.has-custom-cursor .cursor-follower { display: block; }

/* Home nav */
.home-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--surface);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.home-nav.scrolled {
  padding: 12px 40px;
  box-shadow: var(--shadow);
  border-bottom: none;
  background: var(--surface) !important;
  backdrop-filter: none;
}
.home-nav .nav-links {
  gap: 28px;
  margin: 0 auto;
}
.home-nav .nav-links a {
  font-size: 12px !important;
  color: var(--muted);
}
.home-nav .nav-links a:hover { color: var(--ink); }
.home-nav .nav-cta {
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  white-space: nowrap;
}
.home-nav .nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
}

/* Hero — height follows banner image */
.hero-section {
  position: relative;
  margin-top: 0;
  min-height: 0;
  display: block;
  overflow: hidden;
  width: 100%;
}
.hero-media {
  position: relative;
  inset: auto;
  width: 100%;
  line-height: 0;
}
.hero-media img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: unset;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 35, 50, 0.45) !important;
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 640px;
  padding: 48px 60px;
  color: #fff;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 20px;
  color: #fff;
}
.hero-section .hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #fff !important;
}
.hero-section .hero-title em {
  font-style: italic;
  color: var(--accent-soft);
}
.hero-section .hero-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82) !important;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-section .hero-actions {
  opacity: 1;
  transform: none;
  animation: none;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-ghost-light {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 16px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost-light:hover {
  border-color: #fff;
  color: var(--accent-soft);
}
.btn-primary {
  background: var(--accent);
  color: #fff !important;
}
.btn-primary:hover {
  background: var(--primary-dark) !important;
}

/* Categories header polish */
.categories-section {
  background: var(--bg);
  padding-bottom: 40px;
}
.categories-header {
  padding: 72px 40px 0;
  justify-content: space-between;
  align-items: flex-end;
}
.categories-header-text {
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
  max-width: 520px;
}
.categories-header-text p {
  max-width: none;
}
.categories-view-all {
  position: static;
  transform: none;
  margin: 0 0 8px;
}
.collections-section { padding: 0 40px 40px; }
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(240px, auto);
  gap: 16px;
  margin-top: 40px;
}
.col-card {
  display: block;
  text-decoration: none;
  min-height: 260px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.col-card.large {
  grid-row: span 2;
  min-height: 100%;
}
.col-card-label { background: rgba(26, 35, 50, 0.88) !important; }
.empty-inline {
  grid-column: 1 / -1;
  color: var(--muted);
  padding: 40px 0;
}

.section-lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 14px;
  max-width: 480px;
}
.section-tag { margin-left: 0; }

/* Featured Swiper */
.featured-slider-section {
  background: var(--surface);
  padding: 80px 40px 90px;
}
.featured-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
}
.swiper-nav-wrap { display: flex; gap: 10px; }
.swiper-nav-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--surface-muted);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.swiper-nav-btn:hover {
  background: var(--accent);
  color: #fff;
}
.featured-swiper { overflow: hidden; padding-bottom: 8px; }
.feat-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: var(--bg);
  border: none;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.feat-card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  height: auto;
  overflow: hidden;
  background: var(--surface-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 16px;
  transition: transform 0.5s ease;
}
.feat-card:hover .feat-card-media img { transform: scale(1.03); }
.feat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.feat-card-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.feat-cat {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.feat-card-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.feat-card-body p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}
.feat-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  gap: 12px;
}
.feat-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
}
.feat-link {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

/* Why Us light */
.why-section-light {
  background: var(--surface-muted) !important;
  color: var(--ink) !important;
  padding: 90px 40px;
}
.why-section-light .section-heading { color: var(--ink) !important; }
.why-section-light .section-heading em { color: var(--accent) !important; }
.why-section-light .section-tag { color: var(--accent); }
.why-intro { max-width: 560px; margin-bottom: 48px; }
.why-section-light .why-grid {
  background: transparent;
  gap: 16px;
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.why-section-light .why-card {
  background: var(--surface);
  border: none;
  box-shadow: var(--shadow);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.why-section-light .why-card::before { display: none; }
.why-section-light .why-card:hover { background: var(--surface); transform: translateY(-4px); }
.why-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-muted);
}
.why-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.why-section-light .why-card:hover .why-card-media img {
  transform: scale(1.04);
}
.why-card-body {
  padding: 22px 22px 26px;
}
.why-section-light .why-card h4 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
}
.why-section-light .why-card p,
.why-section-light .why-card p {
  color: var(--muted) !important;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
.why-section-light .why-icon { display: none; }

/* Process */
.process-section {
  background: var(--surface);
  padding: 90px 40px;
}
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.process-step {
  background: var(--bg);
  padding: 36px 28px;
  border: none;
  box-shadow: none;
}
.process-num {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 18px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--ink);
}
.process-step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* Lookbook */
.lookbook-section {
  background: var(--bg);
  padding: 90px 40px;
}
.lookbook-header { max-width: 560px; margin-bottom: 40px; }
.lookbook-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.look-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--surface-muted);
}
.look-item.large {
  grid-row: span 2;
}
.look-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.look-item:hover img { transform: scale(1.04); }
.look-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: rgba(26, 35, 50, 0.82);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* Testimonials */
.testimonials-section {
  background: var(--surface);
  padding: 90px 40px;
}
.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  gap: 48px;
}
.testi-card {
  border-left: none !important;
  background: var(--bg) !important;
  box-shadow: var(--shadow);
  opacity: 1;
  transform: none;
}
.testi-card.visible { opacity: 1; transform: none; }
.testi-card:hover {
  border-color: transparent !important;
  transform: translateY(-4px) !important;
}

/* CTA */
.cta-section { background: var(--bg); }
.cta-inner { min-height: 520px; }
.cta-image {
  position: relative;
  background: var(--surface-muted);
  min-height: 360px;
}
.cta-image img,
.cta-image iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border: 0;
  display: block;
}
.cta-contact-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: var(--surface);
  padding: 24px 28px;
  max-width: 320px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cta-contact-card strong { color: var(--ink); font-size: 15px; }
.cta-contact-card p { color: var(--muted); font-size: 14px; margin: 0; }
.cta-contact-card a {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
}
.cta-content {
  background: var(--ink);
  padding: 64px 56px;
}
.cta-content .section-heading { color: #fff; }
.cta-content .section-heading em { color: var(--accent-soft); }
.cta-form-grid input {
  border: 1px solid rgba(255,255,255,0.2) !important;
  background: rgba(255,255,255,0.06) !important;
}
.cta-form-grid button {
  background: var(--accent) !important;
  color: #fff !important;
}
.cta-form-grid button:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
}

.home-footer {
  display: block !important;
  padding: 80px 40px 40px !important;
}
.home-footer .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

/* Catalog: borderless cards */
.product-card,
.related-card,
.inspiration-card,
.blog-card {
  border: none !important;
  box-shadow: var(--shadow);
}
.product-card:hover,
.related-card:hover {
  border-color: transparent !important;
  background: var(--surface) !important;
  box-shadow: var(--shadow-hover);
}
.category-hero-img { border: none !important; }
.main-image-wrap { border: none !important; box-shadow: var(--shadow); }
.spec-cell {
  border: none !important;
  background: var(--bg) !important;
}
.spec-cell:hover {
  background: var(--accent-soft) !important;
  border-color: transparent !important;
}
.cat-chip,
.filter-btn {
  border: none !important;
  background: var(--surface-muted);
}
.cat-chip:hover,
.cat-chip.active,
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: transparent !important;
}
.all-categories {
  border-top: none !important;
  border-bottom: none !important;
  background: var(--surface);
}
.navbar {
  border-bottom: none !important;
  box-shadow: var(--shadow);
}
.navbar .nav-cta {
  background: var(--accent);
  color: #fff !important;
  border: none;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.navbar .nav-cta:hover { background: var(--primary-dark); }
.navbar .nav-links a.active { color: var(--accent); }

.trust-item-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
}
.trust-item-icon svg { display: block; }
.btn-add-cart { background: var(--accent) !important; }
.btn-add-cart:hover {
  background: var(--primary-dark) !important;
  box-shadow: 0 8px 24px rgba(11, 92, 138, 0.28) !important;
}
.btn-enquiry {
  color: var(--accent) !important;
  border-color: var(--accent) !important;
}
.product-price,
.product-card-price,
.related-card-price,
.category-title em,
.related-heading em { color: var(--accent) !important; }
.product-badge,
.product-badge-lg,
.btn-view { background: var(--accent) !important; }
.product-category-link {
  background: var(--accent-soft) !important;
  color: var(--accent) !important;
}
.thumb-img.active,
.thumb-img:hover { border-color: var(--accent) !important; }

.enquiry-modal .btn-submit { background: var(--accent) !important; }
.toast-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  color: #34D399;
}

@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .col-card.large { grid-row: span 1; }
  .lookbook-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .look-item.large { grid-row: span 1; min-height: 280px; }
  .look-item { min-height: 220px; }
  .process-steps { grid-template-columns: 1fr; }
  .why-section-light .why-grid { grid-template-columns: 1fr 1fr; }
  .home-footer .footer-top { grid-template-columns: 1fr 1fr; }
  .testimonials-inner { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .home-nav { padding: 14px 20px; flex-wrap: wrap; }
  .nav-toggle { display: flex; order: 2; margin-left: auto; }
  .home-nav .nav-cta { order: 3; display: none; }
  .home-nav .nav-links {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0 8px;
  }
  .home-nav .nav-links.open { display: flex; }
  .hero-copy { padding: 32px 24px; }
  .hero-section { min-height: 0; margin-top: 0; }
  .categories-header,
  .collections-section,
  .featured-slider-section,
  .why-section-light,
  .process-section,
  .lookbook-section,
  .testimonials-section { padding-left: 20px; padding-right: 20px; }
  .categories-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .collections-grid { grid-template-columns: 1fr; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .why-section-light .why-grid { grid-template-columns: 1fr; }
  .home-footer .footer-top { grid-template-columns: 1fr; }
  .cta-content { padding: 48px 24px; }
  .featured-slider-header { flex-direction: column; align-items: flex-start; }
}

/* Portrait product images — full product visible */
.feat-card-media,
.product-card-img-wrap {
  aspect-ratio: 3 / 4 !important;
  height: auto !important;
  background: var(--surface-muted) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.feat-card-media img,
.product-card-img {
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 16px;
}
.related-card img {
  aspect-ratio: 3 / 4 !important;
  height: auto !important;
  object-fit: contain !important;
  padding: 14px;
  background: var(--surface-muted);
}
.main-image {
  height: auto !important;
  min-height: 420px;
  max-height: 560px;
  object-fit: contain !important;
  padding: 24px;
  background: var(--surface-muted);
}

/* ============================================================
   SHARED SITE HEADER (all pages)
   ============================================================ */
body {
  padding-top: 88px;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--surface, #fff);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow, 0 8px 28px rgba(26, 35, 50, 0.08));
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.site-header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.site-header-brand img {
  display: block;
  height: 56px;
  width: auto;
}
.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: 8px 28px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.site-header .nav-links > li {
  position: relative;
  list-style: none;
}
.site-header .nav-links a,
.site-header .nav-dropdown-trigger {
  font-size: 12px !important;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted, #5B6B7C);
  text-decoration: none;
  background: none;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  font-family: var(--font-body, 'Open Sans', sans-serif);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.site-header .nav-links a:hover,
.site-header .nav-links a.active,
.site-header .nav-dropdown-trigger:hover,
.site-header .nav-dropdown-trigger.active,
.site-header .nav-dropdown.open .nav-dropdown-trigger {
  color: var(--ink, #1A2332);
}
.site-header .nav-links a::after { display: none !important; }
.site-header .nav-cta {
  flex-shrink: 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--accent, #0B5C8A);
  color: #fff !important;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease;
}
.site-header .nav-cta:hover {
  background: var(--primary-dark, #084A6E);
  color: #fff !important;
}
.site-header .nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}
.site-header .nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink, #1A2332);
}

/* Collections dropdown */
.site-header .nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  background: var(--surface, #fff);
  box-shadow: var(--shadow-hover, 0 14px 40px rgba(26, 35, 50, 0.12));
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  z-index: 220;
}
/* Invisible hit-area bridge so cursor never loses hover between trigger and menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px 18px !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  font-size: 14px !important;
  color: var(--ink, #1A2332) !important;
  width: 100%;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: var(--surface-muted, #E8EEF4);
  color: var(--accent, #0B5C8A) !important;
}
.nav-dropdown-thumb {
  width: 36px;
  height: 36px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface-muted, #E8EEF4);
}
.nav-dropdown-empty {
  display: block;
  padding: 12px 18px;
  font-size: 13px;
  color: var(--muted, #5B6B7C);
}
.nav-dropdown-footer {
  border-top: none;
  margin-top: 4px;
  padding-top: 4px;
  box-shadow: inset 0 1px 0 var(--surface-muted, #E8EEF4);
}
.nav-dropdown-footer a {
  color: var(--accent, #0B5C8A) !important;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}
.nav-dropdown-trigger svg {
  transition: transform 0.2s ease;
}
.nav-dropdown.open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

/* Hide old page-specific navs if any remain */
.home-nav,
.navbar:not(.site-header) {
  display: none !important;
}

/* Hero no longer needs large nav offset — body padding handles it */
.hero-section,
#home.hero-section,
#home {
  margin-top: 0 !important;
  min-height: 0 !important;
}
.hero-media img {
  width: 100% !important;
  height: auto !important;
  object-fit: unset !important;
}

/* Catalog pages: remove sticky duplicate space from old navbar rules */
.breadcrumb {
  padding-top: 24px;
}

@media (max-width: 900px) {
  .site-header-inner { padding: 12px 20px; }
  .site-header .nav-toggle { display: flex; }
  .site-header .nav-cta { display: none; }
  .site-header .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface, #fff);
    box-shadow: var(--shadow);
    padding: 8px 0 16px;
    margin: 0;
  }
  .site-header .nav-links.open { display: flex; }
  .site-header .nav-links > li { width: 100%; }
  .site-header .nav-links a,
  .site-header .nav-dropdown-trigger {
    width: 100%;
    padding: 14px 20px !important;
    justify-content: space-between;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none !important;
    left: auto;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    background: var(--bg, #F3F6F9);
    padding: 0;
    display: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block !important;
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    display: none !important;
  }
  .nav-dropdown.open:hover .nav-dropdown-menu {
    display: block !important;
  }
}

/* Font system — sanitaryware catalog style */
:root {
  --font-display: 'Montserrat', sans-serif !important;
  --font-body: 'Open Sans', sans-serif !important;
}
body,
button,
input,
select,
textarea {
  font-family: var(--font-body) !important;
}
.section-heading,
.hero-brand,
.hero-title,
.feat-card-body h3,
.feat-price,
.process-num,
.process-step h3,
.why-card h4,
.testi-quote,
.product-name,
.product-price,
.product-card-name,
.product-card-price,
.category-title,
.related-heading,
.related-card-name,
.related-card-price,
.footer-brand-logo,
.footer-tagline,
.col-card-label h3,
.marquee-item,
.empty-state h3 {
  font-family: var(--font-display) !important;
  font-weight: 600;
  font-style: normal;
}
.section-heading em,
.hero-title em,
.category-title em,
.related-heading em,
.testi-quote {
  font-style: normal;
  font-weight: 600;
}
.section-heading,
.hero-title,
.product-name,
.category-title,
.related-heading {
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero-brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav-logo,
.site-header .nav-links a,
.site-header .nav-dropdown-trigger,
.site-header .nav-cta {
  font-family: var(--font-display) !important;
  font-weight: 500;
}

/* ============================================================
   ABOUT + CONTACT PAGES
   ============================================================ */
.page-hero {
  background: var(--surface-muted, #E8EEF4);
  padding: 56px 40px 48px;
}
.page-hero-inner {
  max-width: 840px;
  margin: 0 auto;
}
.page-hero .section-tag {
  margin-left: 0;
  margin-bottom: 14px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--ink, #1A2332);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}
.page-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted, #5B6B7C);
  max-width: 640px;
  margin: 0;
}
.page-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 40px 80px;
}

.about-layout { display: flex; flex-direction: column; gap: 40px; }
.about-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
.about-image-wrap {
  background: var(--surface-muted);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}
.about-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-mv-card {
  background: var(--surface);
  box-shadow: var(--shadow);
  border: none;
  padding: 32px 28px;
}
.about-mv-card h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 12px;
}
.about-mv-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-block-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 20px;
}
.contact-detail-item {
  margin-bottom: 20px;
}
.contact-detail-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.contact-detail-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}
.contact-detail-item a {
  color: var(--ink);
  text-decoration: none;
}
.contact-detail-item a:hover { color: var(--accent); }
.contact-map {
  margin-top: 28px;
  background: var(--surface-muted);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}
.contact-form-panel {
  background: var(--surface);
  box-shadow: var(--shadow);
  border: none;
  padding: 36px 32px;
}
.contact-form-lead {
  font-size: 14px;
  color: var(--muted);
  margin: -8px 0 24px;
}
.contact-page-form .field { margin-bottom: 16px; }
.contact-page-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  border: 1px solid var(--border, #D5DCE5);
  background: var(--bg, #F3F6F9);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  border-radius: 0;
}
.contact-page-form input:focus,
.contact-page-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
}
.contact-page-form textarea { resize: vertical; min-height: 120px; }
.contact-submit {
  margin-top: 8px;
  border: none;
  cursor: pointer;
}
.contact-form-panel .social-link {
  background: var(--surface-muted);
  color: var(--ink) !important;
}
.contact-details .social-link {
  background: var(--surface-muted);
  color: var(--ink) !important;
}
.contact-details .social-link:hover {
  background: var(--accent);
  color: #fff !important;
}

@media (max-width: 900px) {
  .page-hero, .page-section { padding-left: 20px; padding-right: 20px; }
  .about-main,
  .about-mv-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-form-panel { padding: 28px 20px; }
}

/* Category hero: icon left, text right */
.category-hero {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 24px !important;
  flex-wrap: nowrap !important;
}
.category-hero-img {
  margin-bottom: 0 !important;
  flex-shrink: 0;
}
.category-hero-text {
  flex: 1;
  min-width: 0;
}
.category-title br { display: none; }
@media (max-width: 480px) {
  .category-hero { gap: 16px !important; }
  .category-hero-img { width: 72px; height: 72px; }
}

/* Footer copyright + developer credit */
.footer-bottom {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 28px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
}
.footer-copy {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}
.footer-developer {
  margin: 0 0 0 auto;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  text-align: right;
}
.footer-developer a {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
}
.footer-developer a:hover {
  color: #fff !important;
  text-decoration: underline;
}
.home-footer .footer-top {
  margin-bottom: 0;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.catalog-footer {
  display: block !important;
  padding: 36px 40px 28px !important;
}
.catalog-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.catalog-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Footer logo image */
.footer-brand-logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 16px;
  line-height: 0;
}
.footer-brand-logo img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.catalog-footer-logo img {
  height: 48px;
  max-width: 160px;
}

/* Categories section — compact height */
.categories-section {
  padding-bottom: 24px !important;
}
.categories-header {
  padding: 40px 40px 0 !important;
  margin-bottom: 0 !important;
  align-items: flex-end !important;
}
.categories-header-text {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  max-width: 520px !important;
}
.categories-header-text .section-heading {
  font-size: clamp(28px, 3.2vw, 40px) !important;
  margin-bottom: 8px;
}
.categories-header-text p {
  margin-top: 8px !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}
.collections-section {
  padding: 20px 40px 32px !important;
}
.collections-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  grid-auto-rows: auto !important;
  gap: 14px !important;
  margin-top: 20px !important;
}
.collections-grid .col-card,
.collections-grid .col-card.large {
  grid-row: auto !important;
  min-height: 0 !important;
  height: 220px !important;
}
.collections-grid .col-card-img,
.collections-grid .col-card.large .col-card-img {
  min-height: 0 !important;
  height: 100% !important;
  width: 100%;
  object-fit: cover;
}
.collections-grid .col-card-label {
  padding: 18px 16px 16px !important;
  transform: none !important;
}
.collections-grid .col-card-label h3,
.collections-grid .col-card.large .col-card-label h3 {
  font-size: 16px !important;
  font-weight: 600;
}
.collections-grid .col-card-label p {
  margin-top: 4px !important;
  font-size: 11px !important;
}
.collections-grid .col-card-label .explore-link {
  margin-top: 8px !important;
  opacity: 1 !important;
  transform: none !important;
  font-size: 10px !important;
}
@media (max-width: 1100px) {
  .collections-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .collections-grid .col-card { height: 200px !important; }
}
@media (max-width: 700px) {
  .categories-header,
  .collections-section { padding-left: 20px !important; padding-right: 20px !important; }
  .collections-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .collections-grid .col-card { height: 170px !important; }
}
