:root {
  --bg: #f8f2e8;
  --bg-soft: #fffaf3;
  --surface: rgba(255, 250, 243, 0.82);
  --surface-strong: #fffdf8;
  --text: #2e241d;
  --muted: #65584d;
  --line: rgba(101, 88, 77, 0.16);
  --accent: #8d4d3a;
  --accent-deep: #5a3228;
  --accent-soft: #ead7cb;
  --olive: #6f7550;
  --shadow: 0 20px 50px rgba(78, 51, 35, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: 80px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(141, 77, 58, 0.08), transparent 28%),
    linear-gradient(180deg, #fbf5eb 0%, #f7efe2 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(141, 77, 58, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 77, 58, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 78%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 48px;
}

/* ADDED: Home page uses true end-to-end landing screen */
.home-page .page-shell {
  width: 100%;
  margin: 0 auto 48px;
}

/* ADDED: Keep lower home sections readable after full-width landing */
.home-page .info-strip,
.home-page .section-block,
.home-page .contact-banner {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

/* ADDED: Category pages also use end-to-end screen framing */
.site-wide-page .page-shell {
  width: 100%;
  margin: 0 auto 48px;
}

/* ADDED: Keep category page content readable inside full-width pages */
.site-wide-page .section-block,
.site-wide-page .also-like-section,
.site-wide-page .contact-banner {
  /* CHANGED: Site-wide sections now run end-to-end */
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  padding-left: clamp(18px, 4vw, 64px);
  padding-right: clamp(18px, 4vw, 64px);
}

/* ADDED: Category hero banners stretch end-to-end */
.site-wide-page .cat-hero-banner {
  width: 100%;
  border-radius: 0;
}

.hero,
.info-strip,
.section-block,
.contact-banner {
  position: relative;
  overflow: hidden;
}

/* Header must be overflow:visible so the mobile dropdown nav can appear below it */
.site-header {
  position: relative;
  overflow: visible;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255, 250, 243, 0.98);
  border: 1px solid var(--line);
  border-radius: 0;
  backdrop-filter: blur(10px);
  
  /* NEW: Add these lines */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 12px rgba(78, 51, 35, 0.1);
}

/* CHANGED: Reference-style landing header spacing */
.site-header {
  border-radius: 0;
  background: rgba(251, 243, 248, 0.86);
  box-shadow: none;
}

/* ADDED: Home header spans edge-to-edge like a landing page */
.home-page .site-header {
  width: 100%;
  border-left: 0;
  border-right: 0;
  padding-left: clamp(18px, 3vw, 44px);
  padding-right: clamp(18px, 3vw, 44px);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff8f2;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.eyebrow,
.section-tag,
.note-label,
.info-strip span,
.product-number {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.eyebrow,
.section-tag,
.note-label,
.info-strip span {
  color: var(--muted);
}

.brand-block h1,
.section-heading h2,
.hero-copy h2,
.contact-banner h2,
.product-card h3,
.content-card h3,
.hero-note h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
}

.brand-block h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  /* CHANGED: Landing page nav spacing inspired by reference */
  gap: 26px;
}

.site-nav a,
.product-card a {
  color: inherit;
  text-decoration: none;
}

.site-nav a {
  position: relative;
  /* CHANGED: Compact uppercase landing nav */
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

/* ADDED: Header actions from reference landing page */
.landing-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* ADDED: Square search button in landing header */
.landing-search {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(90, 50, 40, 0.12);
  color: var(--text);
  background: rgba(255, 250, 243, 0.46);
  text-decoration: none;
  font-size: 1.35rem;
}

/* ADDED: Purple enquiry button inspired by provided reference */
.landing-enquire {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #4c0d77;
  color: #fffaf5;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

/* ADDED: Header action hover states */
.landing-search:hover,
.landing-search:focus-visible,
.landing-enquire:hover,
.landing-enquire:focus-visible {
  transform: translateY(-1px);
}

.landing-enquire:hover,
.landing-enquire:focus-visible {
  background: #2f084e;
}

/* CHANGED: Compact landing logo typography like the reference */
.site-header .brand-block h1 {
  color: #4c0d77;
  font-size: 1.15rem;
  line-height: 1;
}

/* CHANGED: Suitings label sits below brand name */
.site-header .brand-block .eyebrow {
  margin-top: 4px;
  color: var(--muted);
  letter-spacing: 0.26em;
}

.hero {
  display: grid;
  /* CHANGED: Landing page layout gives more space to the hero image */
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 28px;
  margin-top: 24px;
  padding: 36px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 251, 246, 0.92), rgba(245, 235, 221, 0.88));
  border: 1px solid rgba(101, 88, 77, 0.14);
  box-shadow: var(--shadow);
}

/* CHANGED: New reference-style landing page hero */
.landing-hero {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 46px;
  min-height: calc(100vh - 150px);
  padding: 48px 32px 28px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background:
    radial-gradient(circle at 20% 16%, rgba(76, 13, 119, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(253, 245, 250, 0.96), rgba(250, 240, 246, 0.92));
}

/* CHANGED: Landing hero now fills the full browser width */
.home-page .landing-hero {
  width: 100%;
  margin-top: 0;
  min-height: calc(100vh - 90px);
  padding-left: clamp(18px, 4vw, 64px);
  padding-right: clamp(18px, 4vw, 64px);
}

/* ADDED: Dot texture like the provided reference */
.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(76, 13, 119, 0.12) 0.8px, transparent 0.8px);
  background-size: 10px 10px;
  opacity: 0.42;
}

/* CHANGED: Remove old decorative hero orb for landing */
.landing-hero::after {
  display: none;
}

/* ADDED: Centered brand banner stage */
.landing-brand-stage {
  position: relative;
  z-index: 1;
  /* CHANGED: Wider brand banner for end-to-end landing composition */
  width: min(980px, 82vw);
}

/* ADDED: Large reference-style purple brand banner */
.landing-main-banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 28px 56px rgba(56, 18, 84, 0.16);
}

/* ADDED: Landing headline block */
.landing-copy {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  text-align: center;
}

/* ADDED: Main black serif tagline */
.landing-kicker {
  margin: 0;
  color: #140a1e;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 8vw, 6.4rem);
  font-weight: 500;
  line-height: 0.95;
}

/* ADDED: Gold italic craftsmanship tagline */
.landing-copy h2 {
  margin: 18px 0 0;
  color: #d7a800;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.1rem, 7.4vw, 5.8rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.95;
}

/* ADDED: Short landing support copy */
.landing-subtitle {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* ADDED: Landing action placement */
.landing-actions {
  justify-content: center;
  margin-top: 26px;
}

.hero::after,
.section-block::after,
.contact-banner::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 77, 58, 0.12), transparent 70%);
}

.hero-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.hero-copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.hero-text,
.content-card p,
.product-card p,
.contact-banner p,
.hero-note p,
.detail-list {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fffaf5;
}

.button-primary:hover {
  background: var(--accent-deep);
}

.button-secondary {
  border: 1px solid rgba(141, 77, 58, 0.28);
  color: var(--accent-deep);
  background: rgba(255, 250, 243, 0.7);
}

.hero-points,
.detail-list {
  margin: 0;
  padding-left: 18px;
}

.hero-card,
.content-card,
.product-card,
.contact-banner,
.info-strip,
.section-block {
  border: 1px solid var(--line);
}

.hero-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.85);
}

.fabric-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.swatch {
  min-height: 150px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.swatch::before,
.swatch::after {
  content: "";
  position: absolute;
  inset: 0;
}

.swatch::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 12%, transparent 12% 24%, rgba(255, 255, 255, 0.15) 24% 36%, transparent 36% 100%);
  mix-blend-mode: soft-light;
}

.swatch::after {
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.14) 0 1px,
    transparent 1px 7px
  );
  opacity: 0.7;
}

.swatch-cream {
  background: linear-gradient(135deg, #efe0c4, #d7c29b);
}

.swatch-sand {
  background: linear-gradient(135deg, #d6bc97, #ac8765);
}

.swatch-maroon {
  background: linear-gradient(135deg, #8d4d3a, #633427);
}

.swatch-olive {
  background: linear-gradient(135deg, #89906b, #5c6146);
}

.hero-note {
  display: grid;
  gap: 12px;
}

.note-grid {
  display: grid;
  gap: 12px;
}

.note-grid article {
  padding: 16px;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid rgba(101, 88, 77, 0.1);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
  padding: 18px 24px;
  border-radius: 24px;
  background: rgba(255, 251, 246, 0.76);
}

.info-strip div {
  display: grid;
  gap: 6px;
}

.info-strip strong {
  font-size: 1rem;
}

.section-block {
  margin-top: 24px;
  padding: 32px;
  border-radius: 30px;
  background: rgba(255, 252, 247, 0.78);
  box-shadow: var(--shadow);
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.section-heading h2,
.contact-banner h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1;
}

.two-column,
.catalogue-grid {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.two-column {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
}

.content-card,
.product-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--surface);
}

.bordered-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(248, 239, 226, 0.92)),
    linear-gradient(90deg, transparent 0 92%, rgba(141, 77, 58, 0.12) 92% 100%);
}

.catalogue-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  display: grid;
  gap: 16px;
}

.product-number {
  color: var(--accent);
  font-weight: 700;
}

.product-card h3 {
  font-size: 2rem;
}

.product-card a {
  width: fit-content;
  color: var(--accent-deep);
  font-weight: 700;
}

.product-card a:hover {
  color: var(--accent);
}

.b2b-section {
  background:
    linear-gradient(145deg, rgba(255, 251, 246, 0.92), rgba(238, 227, 213, 0.9));
}

/* ADDED: Premium bulk order section inspired by reference image */
.bulk-premium-section {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  padding: clamp(48px, 7vw, 76px) 28px;
  border: 1px solid rgba(141, 77, 58, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 8%, rgba(111, 117, 80, 0.14), transparent 28%),
    linear-gradient(145deg, #fffaf3 0%, #f7eadf 100%);
  box-shadow: var(--shadow);
}

/* ADDED: Bulk heading layout */
.bulk-premium-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

/* ADDED: Bulk heading typography */
.bulk-premium-heading h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--accent-deep);
}

/* ADDED: Gold/olive emphasis using site palette */
.bulk-premium-heading h2 span {
  color: var(--olive);
}

.bulk-premium-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

/* ADDED: Bulk order benefit cards */
.bulk-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(44px, 6vw, 72px);
}

/* ADDED: Individual bulk benefit card */
.bulk-benefit-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  min-height: 260px;
  padding: 36px 24px;
  border: 1px solid rgba(141, 77, 58, 0.18);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.72);
  text-align: center;
  transition: transform 260ms var(--motion-ease, ease), box-shadow 260ms ease, border-color 260ms ease;
}

.bulk-benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(141, 77, 58, 0.32);
  box-shadow: 0 24px 52px rgba(78, 51, 35, 0.16);
}

/* ADDED: Circular icon badge */
.bulk-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--olive), var(--accent));
  color: #fffaf5;
  font-size: 2rem;
  font-weight: 800;
}

.bulk-benefit-card h3 {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
}

.bulk-benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.accent-card {
  background: linear-gradient(145deg, rgba(141, 77, 58, 0.94), rgba(95, 53, 42, 0.96));
  color: #fff9f4;
}

.accent-card p {
  color: rgba(255, 249, 244, 0.82);
}

.contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 32px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(251, 245, 235, 0.94), rgba(239, 227, 209, 0.92));
  box-shadow: var(--shadow);
}

/* ADDED: Premium fabric journey CTA inspired by reference */
.fabric-journey-section {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(56px, 8vw, 92px) 24px;
  text-align: center;
  background:
    radial-gradient(circle at 70% 45%, rgba(97, 24, 146, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(253, 247, 251, 0.96));
}

/* ADDED: CTA dotted textile texture */
.fabric-journey-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(97, 24, 146, 0.11) 0.8px, transparent 0.8px);
  background-size: 10px 10px;
  opacity: 0.45;
}

/* ADDED: CTA content stays above texture */
.fabric-journey-section > * {
  position: relative;
  z-index: 1;
}

/* ADDED: CTA editorial headline */
.fabric-journey-section h2 {
  margin: 0;
  color: #140a1e;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 0.94;
}

/* ADDED: CTA italic fabric journey line */
.fabric-journey-section h2 span {
  display: block;
  font-style: italic;
}

/* ADDED: CTA supporting copy */
.fabric-journey-section > p:not(.section-tag) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

/* ADDED: CTA action buttons */
.fabric-journey-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
}

/* ADDED: CTA contact row */
.journey-contact-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
  color: var(--muted);
}

/* ADDED: CTA contact links */
.journey-contact-strip a {
  color: var(--muted);
  text-decoration: none;
}

.journey-contact-strip a:hover {
  color: var(--accent-deep);
}

/* CHANGED: Old compact footer is replaced by luxury footer where used */
.site-footer {
  display: none;
}

/* ADDED: Dark luxury footer inspired by provided reference */
.luxury-site-footer {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.95fr 1.15fr;
  gap: clamp(28px, 5vw, 72px);
  width: 100%;
  padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 72px);
  background: #130a20;
  color: #fffaf5;
}

/* ADDED: Footer brand block */
.footer-brand-column {
  display: grid;
  gap: 26px;
  align-content: start;
}

/* ADDED: Footer logo row */
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand-row img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand-row h2,
.footer-column h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1;
}

.footer-brand-row p {
  margin: 6px 0 0;
  color: rgba(255, 250, 245, 0.58);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-brand-column > p,
.footer-connect p {
  margin: 0;
  max-width: 280px;
  color: rgba(255, 250, 245, 0.62);
  line-height: 1.6;
}

/* ADDED: Footer link columns */
.footer-column {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-column a {
  color: rgba(255, 250, 245, 0.6);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fffaf5;
  transform: translateX(3px);
}

/* ADDED: Footer subscribe field */
.footer-subscribe {
  display: grid;
  grid-template-columns: 1fr 62px;
  margin-top: 8px;
  border: 1px solid rgba(255, 250, 245, 0.26);
}

.footer-subscribe input {
  min-width: 0;
  min-height: 54px;
  padding: 0 16px;
  border: 0;
  background: rgba(255, 250, 245, 0.08);
  color: #fffaf5;
  font: inherit;
}

.footer-subscribe input::placeholder {
  color: rgba(255, 250, 245, 0.46);
}

.footer-subscribe button {
  border: 0;
  background: #5b1187;
  color: #fffaf5;
  font-size: 2rem;
  cursor: pointer;
  transition: background 180ms ease;
}

.footer-subscribe button:hover,
.footer-subscribe button:focus-visible {
  background: #7a20ad;
}

/* ADDED: Static subscribe feedback without page reload */
.footer-subscribe.is-submitted {
  border-color: rgba(37, 211, 102, 0.7);
}

/* ADDED: Floating WhatsApp chat box button */
.whatsapp-chat-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 7px 13px 7px 7px;
  border-radius: 999px;
  background: #25d366;
  color: #062d16;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

/* ADDED: WhatsApp icon circle */
.whatsapp-chat-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #128c43;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

/* ADDED: WhatsApp hover micro interaction */
.whatsapp-chat-button:hover,
.whatsapp-chat-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.38);
}

@media (max-width: 980px) {
  .site-header,
  .contact-banner,
  .hero,
  .two-column,
  .catalogue-grid,
  .info-strip {
    grid-template-columns: 1fr;
  }

  .site-header,
  .contact-banner {
    display: grid;
  }

  /* ADDED: Responsive landing navigation wrapping */
  .landing-header-actions {
    margin-left: 0;
  }

  .hero {
    padding: 28px;
  }

  .catalogue-grid,
  .two-column,
  .info-strip {
    gap: 16px;
  }

  /* ADDED: Footer stacks cleanly on tablets */
  .luxury-site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* ADDED: Bulk cards become two columns on tablets */
  .bulk-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* ADDED: About page stacks gracefully on tablets */
  .about-profile-layout,
  .about-profile-copy {
    grid-template-columns: 1fr;
  }

  .about-promise-strip {
    display: grid;
  }

  /* ADDED: Catalogue tree becomes simpler on tablets */
  .catalogue-tree::before,
  .catalogue-tree .cat-card::before {
    display: none;
  }

  .catalogue-tree .product-link,
  .catalogue-tree .cat-card:nth-child(even) .product-link {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .catalogue-tree .cat-card:nth-child(even) .cat-img-wrap,
  .catalogue-tree .cat-card:nth-child(even) .cat-body {
    order: initial;
    text-align: left;
  }

  .catalogue-tree .cat-img-wrap {
    border-radius: 24px 24px 0 0;
  }

  .catalogue-tree .cat-body {
    border-radius: 0 0 24px 24px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 18px, 100%);
    margin: 12px auto 32px;
  }

  /* ADDED: Keep home landing end-to-end on mobile too */
  .home-page .page-shell {
    width: 100%;
    margin: 0 auto 32px;
  }

  .site-header,
  .hero,
  .section-block,
  .contact-banner,
  .info-strip {
    padding: 22px;
    border-radius: 24px;
  }

  /* ADDED: Home landing header remains full-bleed on mobile */
  .home-page .site-header,
  .home-page .landing-hero {
    border-radius: 0;
  }

  .brand-block {
    align-items: flex-start;
  }

  .site-nav {
    gap: 12px 16px;
  }

  /* ADDED: Full-width category hero remains edge-to-edge on mobile */
  .site-wide-page .cat-hero-banner {
    border-radius: 0;
  }

  /* ADDED: Mobile landing header controls */
  .landing-header-actions {
    display: grid;
    grid-template-columns: 44px 1fr;
    width: 100%;
  }

  /* ADDED: Mobile enquire button fills available width */
  .landing-enquire {
    width: 100%;
  }

  /* ADDED: Mobile landing hero resembles reference without overflow */
  .landing-hero {
    gap: 34px;
    min-height: auto;
    padding: 34px 16px 28px;
  }

  /* ADDED: Mobile landing brand banner width */
  .landing-brand-stage {
    width: 100%;
  }

  /* ADDED: Mobile landing typography sizing */
  .landing-kicker {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .landing-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .hero-copy h2 {
    font-size: 2.5rem;
  }

  .fabric-showcase {
    grid-template-columns: 1fr 1fr;
  }

  /* ADDED: CTA buttons fill mobile width */
  .fabric-journey-actions {
    width: 100%;
  }

  .fabric-journey-actions .button {
    width: min(100%, 340px);
  }

  /* ADDED: Footer becomes single column on mobile */
  .luxury-site-footer {
    grid-template-columns: 1fr;
    padding: 48px 24px 88px;
  }

  /* ADDED: Floating WhatsApp button compresses on mobile */
  .whatsapp-chat-button {
    right: 16px;
    bottom: 16px;
    min-height: 42px;
    padding: 6px 11px 6px 6px;
  }

  .whatsapp-chat-text {
    font-size: 0.78rem;
  }

  .whatsapp-chat-icon {
    width: 30px;
    height: 30px;
  }

  /* ADDED: Bulk cards stack on mobile */
  .bulk-benefit-grid {
    grid-template-columns: 1fr;
  }

  .bulk-premium-section {
    width: min(100% - 18px, 100%);
    padding: 38px 18px;
  }

  .bulk-benefit-card {
    min-height: auto;
  }

  .swatch {
    min-height: 120px;
  }
}
.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(101, 88, 77, 0.14);
  display: block;
}
.hero-banner {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin-bottom: 18px;
  border-radius: 18px;
}
.business-grid,
.contact-grid {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.business-grid {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 16px;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.content-card,
.business-card {
  height: 100%;
}

.business-card {
  padding: 20px;
}

.business-card h3 {
  font-size: 1.1rem;
  line-height: 1.3;
  margin: 0 0 12px;
}

/* ADDED: Full-screen About page sections */
.about-fullscreen-section {
  width: 100%;
  margin-top: 24px;
  padding: clamp(44px, 6vw, 76px) clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.78);
}

/* ADDED: About profile horizontal layout */
.about-profile-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1280px, 100%);
  margin: 0 auto;
}

/* ADDED: About heading typography */
.about-profile-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
}

/* ADDED: About profile copy in balanced columns */
.about-profile-copy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-profile-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

/* ADDED: Centered headings for About sub-sections */
.about-centered-heading {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.about-fullscreen-section .business-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

/* ADDED: Promise strip fits screen instead of tall side card */
.about-promise-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, 100%);
  margin: 28px auto 0;
  padding: 24px 28px;
  border: 1px solid rgba(141, 77, 58, 0.18);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(141, 77, 58, 0.92), rgba(90, 50, 40, 0.96));
  color: #fffaf5;
}

.about-promise-strip h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.about-promise-strip p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 250, 245, 0.82);
  line-height: 1.6;
}

.business-card .detail-list {
  padding-left: 18px;
  line-height: 1.7;
}
.business-card,
.contact-card,
.map-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.82);
  border: 1px solid rgba(101, 88, 77, 0.16);
}

.business-card h3,
.contact-card h3 {
  font-size: clamp(0.95rem, 2.5vw, 1.35rem);
  margin: 0 0 10px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.download-actions {
  display: grid;
  gap: 14px;
}

.download-note {
  margin: 0;
  color: #65584d;
}

.map-card {
  margin-top: 20px;
  min-height: 180px;
  display: grid;
  align-content: center;
}
.map-card iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 18px;
  margin-top: 12px;
}
.firm-details-heading {
  margin-top: 28px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.business-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.82);
  border: 1px solid rgba(101, 88, 77, 0.16);
}

.business-card h3 {
  font-size: 2rem;
  margin: 0 0 10px;
}

@media (max-width: 980px) {
  .business-grid {
    grid-template-columns: 1fr;
  }
}
.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 20px;
  align-items: start;
}

.left-column {
  display: grid;
  gap: 20px;
}

.firm-details-card {
  height: fit-content;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.business-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.82);
  border: 1px solid rgba(101, 88, 77, 0.16);
}

.business-card h3 {
  font-size: 1.1rem;
  line-height: 1.3;
  margin: 0 0 12px;
}

@media (max-width: 980px) {
  .two-column {
    grid-template-columns: 1fr;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }
  /* ADDED: Mobile hamburger menu */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;

    /* ADDED: Mobile hamburger menu styling */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text);
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  /* Hide hamburger on desktop */
  @media (min-width: 721px) {
    .mobile-menu-toggle {
      display: none;
    }
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 250, 243, 0.98);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    z-index: 999;
  }

  .site-nav.active {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: none;
  }
  }
  
  /* ADDED: About page mobile fixes */
  .about-profile-layout {
    grid-template-columns: 1fr;
  }

  .about-profile-copy {
    grid-template-columns: 1fr;
  }
  
}

.bordered-card {
  padding: 28px;
}
.buyer-points-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  row-gap: 16px;
  margin-top: 16px;
}

.buyer-points-grid .detail-list {
  margin: 0;
  padding-left: 18px;
}

.buyer-points-grid .detail-list li {
  margin-bottom: 10px;
}
@media (max-width: 720px) {
  .buyer-points-grid {
    grid-template-columns: 1fr;
  }
}
.quick-facts-card {
  margin-top: 2px;
}
.eyebrow {
  margin: 0 0 4px;
}

.brand-block h1 {
  margin: 0;
}
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  margin-top: 24px;
  background: #6f2f28;
  color: #fffaf5;
  min-height: 78px;
  padding: 14px 70px 14px 28px;
  border-radius: 24px 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
@media (max-width: 480px) {
  .site-footer {
    padding: 18px 70px 18px 18px;
    min-height: auto;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    right: 12px;
  }
}
.site-footer p {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.2;
}

.back-to-top {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: #6f2f28;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.product-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.product-link:hover h3 {
  color: #8d4d3a;
}
.floating-contact-tab {
  position: fixed;
  right: 0;
  top: 52%;
  transform: translateY(-50%);
  z-index: 20;
  background: #a30f1b;
  color: #fff;
  padding: 18px 12px;
  border-radius: 14px 0 0 14px;
  box-shadow: 0 14px 30px rgba(91, 12, 19, 0.28);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease, padding 0.2s ease;
}

.floating-contact-tab span {
  display: block;
}

.floating-contact-tab:hover,
.floating-contact-tab:focus-visible {
  background: #7f0913;
  transform: translateY(-50%) translateX(-4px);
  padding-left: 14px;
  padding-right: 14px;
}
.products-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      margin-top: 28px;
    }
    /* ADDED: Full-screen Browse Our Range section for category pages */
    .products-fullscreen-section {
      width: 100% !important;
      max-width: none;
      margin-left: 0 !important;
      margin-right: 0 !important;
      border-left: 0;
      border-right: 0;
      border-radius: 0;
      padding-left: clamp(18px, 4vw, 64px);
      padding-right: clamp(18px, 4vw, 64px);
    }
    /* ADDED: Product grid expands across screen without stretching images */
    .products-fullscreen-section .products-grid {
      grid-template-columns: repeat(3, minmax(260px, 1fr));
      gap: clamp(18px, 2.4vw, 32px);
    }
    /* ADDED: Wider cards get taller image windows while preserving crop */
    .products-fullscreen-section .pcard-img-wrap {
      height: clamp(220px, 22vw, 340px);
    }
    /* CHANGED: Images are adjusted by cropping, never stretching */
    .products-fullscreen-section .pcard-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .pcard {
      background: rgba(255, 252, 247, 0.88);
      border: 1px solid rgba(101, 88, 77, 0.16);
      border-radius: 24px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 200ms ease, box-shadow 200ms ease;
    }
    .pcard:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 48px rgba(78, 51, 35, 0.14);
    }
    .pcard-img-placeholder {
      width: 100%;
      aspect-ratio: 4 / 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-family: "Manrope", sans-serif;
      color: rgba(90, 50, 40, 0.45);
    }
    .pcard-img-placeholder svg { opacity: 0.3; }
    .pcard-img-wrap { position: relative; }
    .pcard-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: #8d4d3a;
      color: #fff9f4;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 999px;
    }
    .pcard-body {
      padding: 18px 20px 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }
    .pcard-type {
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #65584d;
      margin: 0;
    }
    .pcard-name {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.45rem;
      font-weight: 600;
      margin: 0;
      line-height: 1.2;
      color: #2e241d;
    }
    .pcard-desc {
      font-size: 0.88rem;
      color: #65584d;
      line-height: 1.65;
      margin: 0;
    }
    .pcard-price-row {
      display: flex;
      align-items: baseline;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 4px;
    }
    .pcard-price { font-size: 1.5rem; font-weight: 700; color: #5a3228; }
    .pcard-price-unit { font-size: 0.78rem; color: #65584d; }
    .pcard-mrp { font-size: 0.88rem; color: #65584d; text-decoration: line-through; }
    .pcard-disc {
      font-size: 0.72rem;
      font-weight: 700;
      background: rgba(111, 117, 80, 0.15);
      color: #6f7550;
      padding: 3px 8px;
      border-radius: 999px;
    }
    .pcard-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 6px; }
    .pcard-btn {
      flex: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 0.82rem;
      font-weight: 600;
      text-decoration: none;
      transition: transform 180ms ease, background 180ms ease;
      font-family: "Manrope", sans-serif;
    }
    .pcard-btn:hover { transform: translateY(-1px); }
    .pcard-enquire { background: #8d4d3a; color: #fffaf5; }
    .pcard-enquire:hover { background: #5a3228; }
    .pcard-call { border: 1px solid rgba(141,77,58,0.28); color: #5a3228; background: rgba(255,250,243,0.7); }
    .filter-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
    .filter-label { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: #65584d; }
    .filter-btn {
      background: rgba(255,250,243,0.8);
      border: 1px solid rgba(101,88,77,0.2);
      border-radius: 999px;
      padding: 7px 16px;
      font-size: 0.82rem;
      font-family: "Manrope", sans-serif;
      color: #2e241d;
      cursor: pointer;
      transition: background 160ms, border-color 160ms;
    }
    .filter-btn:hover, .filter-btn.active { background: #8d4d3a; color: #fff9f4; border-color: #8d4d3a; }
    @media (max-width: 980px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .products-grid { grid-template-columns: 1fr; } }
    /* ADDED: Responsive full-screen product grid */
    @media (max-width: 980px) {
      .products-fullscreen-section .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    /* ADDED: Mobile full-screen product grid stacks cleanly */
    @media (max-width: 600px) {
      .products-fullscreen-section {
        padding-left: 14px;
        padding-right: 14px;
      }

      .products-fullscreen-section .products-grid {
        grid-template-columns: 1fr;
      }

      .products-fullscreen-section .pcard-img-wrap {
        height: 240px;
      }
    }
    .pcard-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    display: block;
    }
    .pcard-img-wrap {
  padding: 0;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  height: 200px; /* ADD THIS */
}

.pcard-img {
  width: 100%;
  height: 100%; /* CHANGE from 200px to 100% */
  object-fit: cover;
  object-position: center; /* ADD THIS — keeps the best part of image centered */
  border-radius: 0; /* CHANGE to 0, let the wrapper handle rounding */
  display: block;
  margin: 0;
}
/* ── Catalogue Cards with Photos ── */
.cat-card {
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(78, 51, 35, 0.18);
}
.cat-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 400ms ease;
}
.cat-card:hover .cat-img {
  transform: scale(1.06);
}
.cat-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(90,50,40,0.18) 0%, rgba(46,36,29,0.45) 100%);
  transition: background 240ms ease;
}
.cat-card:hover .cat-img-overlay {
  background: linear-gradient(160deg, rgba(90,50,40,0.08) 0%, rgba(46,36,29,0.30) 100%);
}
.cat-number {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: rgba(255,250,243,0.9);
  text-transform: uppercase;
  font-family: "Manrope", sans-serif;
}
.cat-body {
  padding: 20px 22px 22px;
}
.cat-body h3 { margin: 0 0 8px; font-size: 1.15rem; }
.cat-body p { margin: 0 0 14px; font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.cat-cta {
  font-size: 0.9rem;
  color: var(--accent);
  transition: color 200ms ease, letter-spacing 200ms ease;
  display: inline-block;
}
.cat-card:hover .cat-cta { color: var(--accent-deep); letter-spacing: 0.04em; }

/* ADDED: Alternating catalogue tree structure */
.catalogue-tree {
  position: relative;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

/* ADDED: Central tree line for catalogue */
.catalogue-tree::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(141, 77, 58, 0.08), rgba(141, 77, 58, 0.42), rgba(111, 117, 80, 0.22));
}

/* CHANGED: Catalogue cards become horizontal tree rows */
.catalogue-tree .cat-card {
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* ADDED: Catalogue row connector dot */
.catalogue-tree .cat-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  border: 4px solid var(--bg-soft);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(141, 77, 58, 0.18);
}

/* CHANGED: Product link alternates image and details side by side */
.catalogue-tree .product-link {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 42px;
  width: 100%;
}

/* ADDED: Alternate catalogue rows flip image/details */
.catalogue-tree .cat-card:nth-child(even) .product-link {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.catalogue-tree .cat-card:nth-child(even) .cat-img-wrap {
  order: 2;
}

.catalogue-tree .cat-card:nth-child(even) .cat-body {
  order: 1;
  text-align: right;
}

/* CHANGED: Catalogue tree image presentation */
.catalogue-tree .cat-img-wrap {
  height: 260px;
  border-radius: 24px;
  box-shadow: 0 22px 46px rgba(78, 51, 35, 0.14);
}

/* CHANGED: Catalogue tree details panel */
.catalogue-tree .cat-body {
  display: grid;
  align-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.88);
  box-shadow: 0 18px 40px rgba(78, 51, 35, 0.1);
}

.catalogue-tree .cat-body h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.catalogue-tree .cat-body p {
  font-size: 0.98rem;
}

/* ADDED: Catalogue tree hover stays refined */
.catalogue-tree .cat-card:hover {
  transform: none;
  box-shadow: none;
}

.catalogue-tree .cat-card:hover .cat-img-wrap,
.catalogue-tree .cat-card:hover .cat-body {
  box-shadow: 0 26px 54px rgba(78, 51, 35, 0.15);
}

/* ── Category Page Hero Banner ── */
.cat-hero-banner {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.cat-hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.cat-hero-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,20,14,0.15) 0%, rgba(30,20,14,0.72) 100%);
}
.cat-hero-banner .banner-content {
  position: relative;
  z-index: 2;
  padding: 28px 32px;
  width: 100%;
}
.cat-hero-banner .banner-breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,250,243,0.65);
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
}
.cat-hero-banner .banner-breadcrumb a { color: rgba(255,250,243,0.65); text-decoration: none; }
.cat-hero-banner .banner-breadcrumb a:hover { color: rgba(255,250,243,0.9); }
.cat-hero-banner h1 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #fffaf5;
  line-height: 1;
  font-weight: 600;
}
.cat-hero-banner .banner-tagline {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255,250,243,0.78);
  font-family: "Manrope", sans-serif;
}

/* ── You May Also Like ── */
.also-like-section {
  margin-top: 24px;
  padding: 32px;
  border-radius: 30px;
  background: rgba(255,252,247,0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.also-like-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 22px;
}
.also-like-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 240ms ease, box-shadow 240ms ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.also-like-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(78,51,35,0.15); }
.also-like-img-wrap { position: relative; height: 150px; overflow: hidden; }
.also-like-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 400ms ease;
}
.also-like-card:hover .also-like-img-wrap img { transform: scale(1.07); }
.also-like-img-wrap .al-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(30,20,14,0.5) 100%);
}
.also-like-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.also-like-body .al-num { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.also-like-body h3 { font-family: "Cormorant Garamond", serif; font-size: 1.3rem; font-weight: 600; color: var(--text); margin: 0; }
.also-like-body p { font-size: 0.84rem; color: var(--muted); margin: 0; line-height: 1.6; flex: 1; }
.also-like-body .al-cta { font-size: 0.85rem; font-weight: 700; color: var(--accent); margin-top: 8px; transition: letter-spacing 200ms ease, color 200ms ease; display: inline-block; }
.also-like-card:hover .al-cta { letter-spacing: 0.04em; color: var(--accent-deep); }
@media (max-width: 600px) {
  .also-like-grid { grid-template-columns: 1fr; }
  .cat-hero-banner { height: 220px; }
  .cat-hero-banner .banner-content { padding: 20px; }
}

/* ── Mobile hamburger button ─────────────────────────────────────── */
/* Hidden on desktop (above 1024px) */
.mobile-menu-toggle {
  display: none;
}

/* ── Tablet / iPad: hamburger + single-row header ───────────────── */
@media (max-width: 1024px) {
  /* Keep header in one clean row */
  .site-header {
    flex-wrap: nowrap;
    gap: 12px;
    padding: 14px 20px;
  }

  /* Show the hamburger button */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    flex-shrink: 0;
    order: 2; /* sits after brand block */
    margin-left: auto; /* push hamburger + enquire to right */
  }

  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 280ms ease, opacity 280ms ease;
  }

  /* Animate to X when menu is open */
  .mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Push Enquire Now to the far right */
  .landing-header-actions {
    order: 3;
    margin-left: 0;
    flex-shrink: 0;
  }

  /* Collapse the nav into a dropdown */
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 250, 243, 0.98);
    border-top: 1px solid var(--line);
    padding: 16px 28px 24px;
    box-shadow: 0 8px 24px rgba(78, 51, 35, 0.12);
    z-index: 999;
    order: 10;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--line);
  }

  /* Shrink brand logo on tablet */
  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-block h1 {
    font-size: 1.1rem;
  }
}

/* ADDED: Final responsive safeguard for alternating catalogue tree */
@media (max-width: 980px) {
  .catalogue-tree::before,
  .catalogue-tree .cat-card::before {
    display: none;
  }

  .catalogue-tree .product-link,
  .catalogue-tree .cat-card:nth-child(even) .product-link {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .catalogue-tree .cat-card:nth-child(even) .cat-img-wrap,
  .catalogue-tree .cat-card:nth-child(even) .cat-body {
    order: initial;
    text-align: left;
  }

  .catalogue-tree .cat-img-wrap {
    border-radius: 24px 24px 0 0;
  }

  .catalogue-tree .cat-body {
    border-radius: 0 0 24px 24px;
  }
}

/* ── Phone-specific header fix (≤ 600px) ────────────────────────── */
@media (max-width: 600px) {

  /* Match specificity of .home-page/.site-wide-page rules so these win */
  .home-page .site-header,
  .site-wide-page .site-header,
  .site-header {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    padding: 10px 14px !important;
    gap: 8px !important;
  }

  /* Hide "Enquire Now" — not enough room on phones */
  .landing-header-actions {
    display: none !important;
  }

  /* Brand-block takes available space but can shrink */
  .brand-block {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
  }

  /* Logo smaller + never shrinks */
  .brand-logo {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }

  /* Hamburger pinned to the far right, never shrinks */
  .mobile-menu-toggle {
    order: 2;
    margin-left: auto;
    flex: 0 0 auto;
  }

  /* h1 + eyebrow on the same row inside brand-block */
  .brand-block > div {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 4px;
    min-width: 0;
    overflow: hidden;
  }

  /* Compact brand name — beats .site-header .brand-block h1 specificity */
  .home-page .site-header .brand-block h1,
  .site-wide-page .site-header .brand-block h1,
  .site-header .brand-block h1 {
    font-size: 0.85rem !important;
    line-height: 1;
    white-space: nowrap;
  }

  /* Eyebrow inline beside h1 */
  .brand-block .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    flex-shrink: 0;
  }
}



