/* ============================================================
   DASSHRA MERCHANDISE INC. — Main Stylesheet
   Theme matched to logo: black wordmark + deep red accent
   ============================================================ */
:root {
  --red: #96151b; /* deep red from the logo dot */
  --red-dark: #7a1015;
  --black: #111111;
  --dark: #2e2e2e; /* nav bar */
  --darker: #1f1f1f; /* copyright bar */
  --grey-bg: #ededed;
  --grey-light: #f5f5f5;
  --text: #4a4a4a;
  --heading: #222;
  --gold: #e8c48a; /* soft gold used on dark contact panel */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  max-width: 100%;
  overflow-x: clip;
}
body {
  font-family: "Roboto", Arial, sans-serif;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  background: #fff;
  max-width: 100%;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.container {
  width: min(1200px, 94%);
  max-width: none;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

/* ============ TOP HEADER ============ */
.top-header {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #efefef;
}
.th-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo .logo-mark-img {
  height: 70px;
  width: auto;
}
.logo .logo-word-img {
  height: 50px;
  width: auto;
}
.th-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.th-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #555;
  line-height: 1.45;
}
.th-phone .ph-icon {
  width: 32px;
  height: 32px;
  flex: none;
}
.th-phone .ph-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--red);
}
.btn-login {
  background: var(--red);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}
.btn-login:hover {
  background: var(--red-dark);
}
.th-social {
  display: flex;
  gap: 8px;
}
.th-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.th-social svg {
  width: 26px;
  height: 26px;
}

/* ============ NAV BAR ============ */
.site-navbar {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-navbar ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.site-navbar li > a {
  display: block;
  padding: 14px 22px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.2s;
}
.site-navbar li > a:hover {
  color: #f0b6b9;
}
.site-navbar li > a.active {
  color: #ffffff;
  background: var(--red);
}
.site-nav-dropdown {
  position: relative;
}
.site-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.22s;
  z-index: 110;
}
.site-nav-dropdown:hover .site-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-nav-dropdown-menu a {
  display: block;
  color: #444;
  text-transform: none;
  letter-spacing: 0.3px;
  font-size: 14px;
  padding: 11px 18px;
  border-bottom: 1px solid #eee;
}
.site-nav-dropdown-menu a:hover {
  background: var(--grey-light);
  color: var(--red);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
}
.mobile-nav-details {
  display: none;
}
.mobile-sticky-footer,
.mobile-product-menu,
.mobile-product-backdrop {
  display: none;
}
.nav-backdrop,
.mobile-menu-head {
  display: none;
}

/* ============ PAGE BANNER (inner pages) ============ */
.page-banner {
  background:
    linear-gradient(rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0.72)),
    linear-gradient(135deg, #2e2e2e, #5a5a5a);
  border-bottom: 5px solid var(--red);
  text-align: center;
  padding: 64px 0;
}
.page-banner h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  color: #fff;
}
.page-banner p {
  color: #cfcfcf;
  margin-top: 8px;
  font-size: 15px;
}
.breadcrumb {
  color: #bbb;
  font-size: 13px;
  margin-top: 12px;
}
.breadcrumb a {
  color: var(--gold);
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.page-banner--creative {
  min-height: 350px;
  display: flex;
  align-items: center;
  text-align: left;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-banner--creative .container {
  position: relative;
  z-index: 1;
}
.page-banner--creative h1 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
}
.page-banner--creative p {
  max-width: 520px;
  font-size: 16px;
}
.page-banner--tiles {
  background-image:
    linear-gradient(
      90deg,
      rgba(249, 247, 243, 0.98) 0%,
      rgba(249, 247, 243, 0.9) 28%,
      rgba(249, 247, 243, 0.32) 52%,
      rgba(249, 247, 243, 0) 72%
    ),
    url("../images/creative-tiles.webp");
}
.page-banner--tiles h1 {
  color: #222;
}
.page-banner--tiles p {
  color: #4a4a4a;
}
.page-banner--tiles .breadcrumb {
  color: #666;
}
.page-banner--bathware {
  background-image:
    linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.9) 0%,
      rgba(8, 8, 8, 0.72) 34%,
      rgba(8, 8, 8, 0.16) 60%,
      rgba(8, 8, 8, 0) 78%
    ),
    url("../images/creative-bathware-v2.webp");
}
.page-banner--adhesives {
  background-image:
    linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.92) 0%,
      rgba(8, 8, 8, 0.76) 34%,
      rgba(8, 8, 8, 0.18) 60%,
      rgba(8, 8, 8, 0) 78%
    ),
    url("../images/creative-adhesives.webp");
}

/* ============ SECTION BASICS ============ */
.section {
  padding: 60px 0;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 600;
  color: #333;
  text-align: center;
  display: block;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 40px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: var(--red);
}
.section-intro {
  max-width: 820px;
  margin: -24px auto 40px;
  text-align: center;
  color: #666;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  font-family: "Roboto", sans-serif;
  transition: 0.2s;
}
.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover {
  background: var(--red-dark);
}
.btn-whatsapp {
  justify-content: center;
  background: #159447;
  color: #fff;
}
.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #0d7b3e;
  color: #fff;
}
.btn-whatsapp svg {
  width: 19px;
  height: 19px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-action-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}
.form-action-row .btn {
  min-height: 46px;
}
.form-action-row .home-submit {
  justify-self: auto;
  gap: 10px;
}
.btn-dark {
  background: var(--black);
  color: #fff;
}
.btn-dark:hover {
  background: #333;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--black);
  color: var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: #fff;
}

/* ============ HERO SLIDER (home) ============ */
.hero {
  position: relative;
  border-bottom: 5px solid var(--red);
  overflow: hidden;
}
.slides {
  position: relative;
  height: clamp(430px, 33.333vw, 620px);
  background: #161616;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
  background: #161616;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}
.slide.active {
  visibility: visible;
}
.slide-media,
.slide-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.slide-media img {
  object-fit: cover;
  object-position: center;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 8, 8, 0.9) 0%,
    rgba(8, 8, 8, 0.7) 31%,
    rgba(8, 8, 8, 0.08) 59%,
    rgba(8, 8, 8, 0) 78%
  );
}
.slide--tiles::after {
  background: linear-gradient(
    90deg,
    rgba(249, 247, 243, 0.98) 0%,
    rgba(249, 247, 243, 0.88) 31%,
    rgba(249, 247, 243, 0.22) 59%,
    rgba(249, 247, 243, 0) 78%
  );
}
.slide-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, 88%);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}
.slide-copy {
  max-width: 540px;
  color: #fff;
  padding: 42px 0 58px;
}
.slide--tiles .slide-copy {
  color: #252525;
}
.slide-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.slide--tiles .slide-kicker {
  color: var(--red);
}
.slide-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4.1vw, 62px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.6px;
  color: inherit;
}
.slide-copy h2 span {
  display: block;
  color: #e8c48a;
  font-weight: 600;
}
.slide--tiles .slide-copy h2 span {
  color: var(--red);
}
.slide-sub {
  max-width: 510px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 22px;
}
.slide--tiles .slide-sub {
  color: #4d4a47;
}
.slide-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.slide-link {
  font-size: 14px;
  font-weight: 700;
  color: inherit;
  border-bottom: 1px solid currentColor;
  padding: 8px 0;
}
.slide-link:hover {
  color: var(--gold);
}
.slide--tiles .slide-link:hover {
  color: var(--red);
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.24);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  transition: 0.2s;
}
.hero-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}
.hero-arrow.prev {
  left: 18px;
}
.hero-arrow.next {
  right: 18px;
}
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-dots button {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: 0.2s;
}
.hero-dots button.on {
  width: 44px;
  background: var(--red);
}

/* ============ CATEGORY CARDS (home) ============ */
.cards-section {
  padding: 56px 0;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.p-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
  transition:
    transform .65s cubic-bezier(.16, 1, .3, 1),
    box-shadow .55s ease,
    border-color .45s ease;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
}
.p-card:hover {
  border-color: rgba(150, 21, 27, .38);
  box-shadow: 0 15px 32px rgba(0, 0, 0, .14);
  transform: translate3d(0, -5px, 0) scale(1.005);
}
.p-card-img {
  display: block;
  height: 200px;
  border-bottom: 3px solid var(--red);
  position: relative;
  overflow: hidden;
}
.p-card-img picture,
.p-card-img img {
  display: block;
  width: 100%;
  height: 100%;
}
.p-card-img img {
  object-fit: cover;
  object-position: 72% center;
  transform: translate3d(0, 0, 0) scale(1);
  backface-visibility: hidden;
  will-change: transform;
  transition: transform .9s cubic-bezier(.16, 1, .3, 1);
}
.p-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(177, 22, 30, .7), rgba(150, 21, 27, .58));
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  transition: opacity .62s cubic-bezier(.16, 1, .3, 1);
}
.p-card-hover-label {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .28);
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(0, 8px, 0) scale(.98);
  pointer-events: none;
  will-change: transform, opacity;
  transition:
    opacity .5s ease .08s,
    transform .58s cubic-bezier(.16, 1, .3, 1) .04s;
}
.p-card:hover .p-card-img img,
.p-card:focus-visible .p-card-img img {
  transform: translate3d(0, 0, 0) scale(1.06);
}
.p-card:hover .p-card-img::after,
.p-card:focus-visible .p-card-img::after {
  opacity: 1;
}
.p-card:hover .p-card-hover-label,
.p-card:focus-visible .p-card-hover-label {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.p-card:focus-visible {
  outline: 3px solid rgba(150, 21, 27, .3);
  outline-offset: 4px;
}
.p-card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 22px;
}
.p-card-body h3 {
  min-width: 0;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  transition: color .4s ease;
}
.p-card-title-link {
  color: inherit;
}
.p-card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}
.p-card-body .go {
  display: inline-flex;
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid var(--red);
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 11.5px;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  letter-spacing: .25px;
  white-space: nowrap;
  flex: none;
  cursor: pointer;
  transition:
    background-color .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}
.p-card-body .card-whatsapp-action {
  border-color: #159447;
  background: #159447;
}
.card-whatsapp-action svg {
  width: 16px;
  height: 16px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.p-card-body .go-arrow {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}
.p-card:hover .p-card-body .go,
.p-card:focus-visible .p-card-body .go {
  border-color: var(--red-dark);
  background: var(--red-dark);
  box-shadow: 0 5px 12px rgba(122, 16, 21, .18);
}
.p-card:hover .p-card-body .card-whatsapp-action,
.p-card:focus-visible .p-card-body .card-whatsapp-action,
.p-card-body .card-whatsapp-action:hover,
.p-card-body .card-whatsapp-action:focus-visible {
  border-color: #0d7b3e;
  background: #0d7b3e;
  box-shadow: 0 5px 12px rgba(13, 123, 62, .2);
}
.p-card-img:focus-visible,
.p-card-title-link:focus-visible,
.card-details-action:focus-visible,
.card-whatsapp-action:focus-visible {
  outline: 3px solid rgba(150, 21, 27, .3);
  outline-offset: -3px;
}
.p-card:hover .p-card-body h3,
.p-card:focus-visible .p-card-body h3 {
  color: var(--red);
}
.p-card:hover .p-card-body .go-arrow,
.p-card:focus-visible .p-card-body .go-arrow {
  transform: translate3d(3px, 0, 0);
}
.p-card:hover .p-card-brand-logo,
.p-card:focus-visible .p-card-brand-logo {
  animation-play-state: paused;
}
.p-card-brand-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 50px;
  margin-top: auto;
  padding: 0 22px 20px;
}
.p-card-brand-logo {
  display: grid;
  place-items: center;
  flex: 1 1 0;
  min-width: 0;
  height: 38px;
  padding: 3px;
  transform-origin: center;
  animation: p-card-brand-spotlight 7.2s ease-in-out infinite;
  animation-delay: var(--brand-loop-delay, 0s);
  animation-fill-mode: both;
  will-change: transform, filter, opacity;
}
.p-card-brand-logo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-card-brand-logo--orientbell {
  padding: 6px 5px;
  border-radius: 3px;
  background: #1e293a;
}
.p-card-brand-logos--single .p-card-brand-logo {
  flex: 0 1 155px;
  max-width: 155px;
}
.cards-grid .p-card:nth-child(1) .p-card-brand-logo:nth-child(1) { --brand-loop-delay: 0s; }
.cards-grid .p-card:nth-child(1) .p-card-brand-logo:nth-child(2) { --brand-loop-delay: .65s; }
.cards-grid .p-card:nth-child(1) .p-card-brand-logo:nth-child(3) { --brand-loop-delay: 1.3s; }
.cards-grid .p-card:nth-child(1) .p-card-brand-logo:nth-child(4) { --brand-loop-delay: 1.95s; }
.cards-grid .p-card:nth-child(2) .p-card-brand-logo:nth-child(1) { --brand-loop-delay: 2.6s; }
.cards-grid .p-card:nth-child(2) .p-card-brand-logo:nth-child(2) { --brand-loop-delay: 3.25s; }
.cards-grid .p-card:nth-child(2) .p-card-brand-logo:nth-child(3) { --brand-loop-delay: 3.9s; }
.cards-grid .p-card:nth-child(3) .p-card-brand-logo:nth-child(1) { --brand-loop-delay: 4.55s; }
@keyframes p-card-brand-spotlight {
  0%, 14%, 100% {
    opacity: .9;
    transform: translateY(0) scale(1);
    filter: saturate(.95);
  }
  5%, 9% {
    opacity: 1;
    transform: translateY(-4px) scale(1.06);
    filter: saturate(1.2) drop-shadow(0 5px 6px rgba(0, 0, 0, .14));
  }
}

/* ============ RED USP STRIP ============ */
.usp-strip {
  background: var(--red);
  padding: 34px 0;
}
.usp-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  text-align: center;
}
.usp-cell {
  display: flex;
  min-width: 0;
  min-height: 112px;
  padding: 8px 22px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.usp-cell + .usp-cell {
  border-left: 1px solid rgba(255, 255, 255, .26);
}
.usp-item {
  color: #fff;
}
.usp-item svg {
  width: 48px;
  height: 48px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin: 0 auto 10px;
  display: block;
}
.usp-rupee {
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  color: #fff;
  font-family: Arial, "Noto Sans", sans-serif;
  font-size: 29px;
  font-weight: 600;
  line-height: 1;
}
.usp-item p {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}
.usp-stat {
  min-width: 0;
}
.usp-stat strong,
.usp-stat span {
  display: block;
}
.usp-stat strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(31px, 2.7vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.5px;
}
.usp-stat span {
  margin-top: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
}

/* ============ VIDEO + BRANDS (home) ============ */
.vb-section {
  padding: 60px 0;
}
.vb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.video-box {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #2b2b2b, #4e4e4e);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  overflow: hidden;
}
.video-box .vb-title {
  position: absolute;
  top: 14px;
  left: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.video-box .vb-sub {
  position: absolute;
  top: 34px;
  left: 16px;
  color: #ccc;
  font-size: 11px;
}
.play-btn {
  width: 74px;
  height: 52px;
  background: var(--red);
  border-radius: 12px;
  display: grid;
  place-items: center;
  transition: 0.2s;
}
.video-box:hover .play-btn {
  transform: scale(1.08);
}
.play-btn::after {
  content: "";
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}
.brand-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.b-logo {
  background: #fff;
  border: 1px solid #e6e6e6;
  min-height: 96px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px 10px;
  transition: 0.2s;
}
.b-logo:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.b-logo .brand-logo-img {
  display: block;
  width: min(100%, 178px);
  height: 58px;
  object-fit: contain;
}
.b-logo.bl-orientbell {
  background: #1e293a;
  border-color: #1e293a;
}
.b-logo b {
  font-size: 19px;
  color: #222;
  letter-spacing: 0.5px;
  line-height: 1.15;
}
.b-logo small {
  display: block;
  font-size: 10px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 3px;
}
.bl-orientbell b {
  color: #1b2a4a;
}
.bl-orientbell b i {
  font-style: normal;
  color: #8cc63f;
}
.bl-kajaria b {
  color: #1b5faa;
  font-style: italic;
}
.bl-varmora b {
  color: #e91e8c;
}
.bl-anuj b {
  color: #96151b;
  font-family: "Playfair Display", serif;
}
.bl-kohler b {
  color: #000;
  letter-spacing: 2px;
}
.bl-jaquar b {
  color: #111;
  font-style: italic;
}
.bl-parryware b {
  color: #29abe2;
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.bl-laticrete b {
  color: #0072bc;
}
.bl-cta {
  background: var(--black);
}
.bl-cta b {
  color: #fff;
  font-size: 15px;
}
.bl-cta small {
  color: var(--gold);
}

/* ============ LEGACY SECTION ============ */
.legacy {
  background: var(--grey-bg);
  padding: 70px 0;
  text-align: center;
}
.legacy-logo {
  display: inline-flex;
  max-width: 100%;
  margin: 0 auto 8px;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 18px);
}
.legacy-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.legacy-logo-mark {
  height: clamp(60px, 8vw, 86px);
}
.legacy-logo-word {
  height: 60px
}
.legacy p {
  max-width: 900px;
  margin: 22px auto 0;
  color: #555;
}
.legacy p + p {
  margin-top: 14px;
}

/* ============ REVIEWS ============ */
.reviews {
  padding: 72px 0;
  background: linear-gradient(180deg, #fff 0%, #faf8f6 100%);
  text-align: center;
}
.reviews .section-eyebrow {
  margin-bottom: 8px;
}
.reviews .section-title {
  margin-bottom: 14px;
}
.review-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 26px;
  color: #666;
  font-size: 14px;
}
.review-rating strong {
  color: #222;
  font-size: 22px;
  line-height: 1;
}
.review-rating .stars {
  color: #e0a93e;
  letter-spacing: 2px;
}
.review-carousel {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
}
.review-track {
  position: relative;
  display: flex;
  gap: 18px;
  width: calc(100% - 90px);
  max-width: 860px;
  margin: 0 auto;
  padding: 6px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  outline: none;
}
.review-track::-webkit-scrollbar {
  display: none;
}
.review-track:focus-visible {
  border-radius: 14px;
  box-shadow: 0 0 0 3px rgba(161, 21, 27, .2);
}
.review-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}
.review {
  position: relative;
  flex: 0 0 100%;
  min-height: 220px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #fff;
  border: 1px solid #dfdfdf;
  box-shadow: 0 8px 24px rgba(23, 20, 18, .07);
  padding: 32px 38px;
  text-align: left;
  border-radius: 14px;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.review::before {
  content: "\201C";
  position: absolute;
  top: 18px;
  right: 30px;
  color: rgba(161, 21, 27, .09);
  font-family: Georgia, serif;
  font-size: 86px;
  line-height: 1;
  pointer-events: none;
}
.review .stars {
  color: #e0a93e;
  letter-spacing: 3px;
  font-size: 15px;
}
.review-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.review-verified {
  color: #237646;
  background: #edf8f1;
  border: 1px solid #cce8d6;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.review blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #3f3f3f;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  flex: none;
}
.review-meta b {
  display: block;
  color: #222;
  font-size: 15px;
}
.review-meta small {
  display: block;
  margin-top: 2px;
  color: #777;
  font-size: 12px;
}
.review-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid #d8d2ce;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  box-shadow: 0 5px 16px rgba(0, 0, 0, .09);
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.review-nav-prev {
  left: 0;
}
.review-nav-next {
  right: 0;
}
.review-nav:hover,
.review-nav:focus-visible {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.06);
}
.review-nav:disabled {
  opacity: .35;
  cursor: default;
}
.review-nav:disabled:hover {
  color: var(--red);
  background: #fff;
  border-color: #d8d2ce;
  transform: translateY(-50%);
}
.review-footer {
  display: flex;
  max-width: 860px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 18px auto 0;
}
.review-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.review-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: #c4c4c4;
  cursor: pointer;
  transition: width .25s ease, border-radius .25s ease, background .25s ease;
}
.review-dots button.on {
  width: 26px;
  border-radius: 999px;
  background: var(--red);
}
.review-drag-hint {
  color: #777;
  font-size: 12px;
}
.review-source-link {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.review-source-link:hover,
.review-source-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}
/* static review cards (testimonials page) */
.review-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
.review-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 30px 36px;
  text-align: left;
}
.review-card .stars {
  color: #e0a93e;
  letter-spacing: 3px;
  font-size: 15px;
  margin-bottom: 12px;
}
.review-card p {
  color: #444;
  font-size: 16px;
}
.review-card b {
  display: block;
  margin-top: 14px;
  color: #888;
  font-size: 14px;
}

/* ============ BRAND PAGES (tiles / bathware / adhesives) ============ */
.brand-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 34px;
  margin-bottom: 30px;
}
.brand-block .b-logo {
  min-height: 140px;
}
.brand-block .b-logo .brand-logo-img {
  width: min(100%, 210px);
  height: 82px;
}
.brand-block h3 {
  font-size: 22px;
  color: #222;
  margin-bottom: 10px;
}
.brand-block .b-desc {
  color: #555;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}
.chip {
  background: var(--grey-light);
  border: 1px solid #e0e0e0;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #444;
}
.range-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}
.range-grid--tiles {
  grid-template-columns: repeat(3, 1fr);
}
.range-grid--tiles .range-visual {
  height: 230px;
}
.range-card {
  background: #fff;
  border: 1px solid #e4e4e4;
  overflow: hidden;
  transition: 0.25s;
}
.range-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
.range-visual {
  height: 185px;
  border-bottom: 3px solid var(--red);
  overflow: hidden;
  background: #e9e6e1;
}
.range-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.range-card:hover .range-visual img {
  transform: scale(1.045);
}
.range-card p {
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: #333;
  text-align: center;
}
.cta-band {
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 48px 20px;
  border-radius: 12px;
}
.cta-band h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  margin-bottom: 8px;
}
.cta-band p {
  color: #bbb;
  margin-bottom: 22px;
}

/* ============ ABOUT PAGE ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.about-grid h2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: #222;
  margin-bottom: 16px;
}
.about-grid p + p {
  margin-top: 14px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.stat {
  background: var(--grey-light);
  border: 1px solid #e4e4e4;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
}
.stat b {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--red);
  line-height: 1.1;
}
.stat span {
  font-size: 13px;
  color: #666;
}
.about-visual {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}
.about-visual i {
  display: block;
  aspect-ratio: 1;
  border-radius: 8px;
}

/* ============ VIDEOS PAGE ============ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-grid .video-box {
  aspect-ratio: 16/9;
}
.video-grid .video-box .play-btn {
  width: 58px;
  height: 42px;
}
.video-caption {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-top: 10px;
  text-align: center;
}

/* ============ PHOTOS PAGE ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 4/3;
  margin: 0;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.gallery-item > .gallery-lightbox-trigger {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.gallery-item > .gallery-lightbox-trigger:focus-visible,
.showcase-card:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 17, 17, 0.65);
  color: #fff;
  font-size: 12.5px;
  padding: 8px 12px;
}

/* ============ HOME SHOWCASE / FAQ / CONTACT ============ */
.home-showcase {
  padding: 82px 0;
  background: #f6f3ee;
}
.section-eyebrow {
  color: #c8783f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.showcase-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 30px;
}
.showcase-heading > div {
  max-width: 680px;
}
.showcase-heading h2,
.faq-intro h2,
.home-enquiry-card h2 {
  color: #111;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.08;
  margin-bottom: 14px;
}
.showcase-heading p,
.faq-intro > p:not(.section-eyebrow) {
  color: #68625b;
  line-height: 1.7;
}
.showcase-link {
  flex: none;
  color: var(--red);
  font-weight: 800;
  border-bottom: 1px solid var(--red);
  padding-bottom: 6px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}
.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
  cursor: zoom-in;
}
.showcase-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.showcase-card:nth-child(6) {
  grid-column: span 2;
}
.home-showcase .showcase-card:nth-child(n + 6) {
  display: none;
}
.showcase-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
}
.showcase-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
}
.showcase-card:hover img {
  transform: scale(1.045);
}
.showcase-card span {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.showcase-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.showcase-more .btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.faq-section {
  padding: 86px 0;
  background: #fff;
}
.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 100px;
}
.faq-intro .btn {
  margin-top: 26px;
}
.faq-list {
  border-top: 1px solid #ded9d1;
}
.faq-item {
  border-bottom: 1px solid #ded9d1;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  color: #171717;
  font-size: 17px;
  font-weight: 800;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary span {
  color: var(--red);
  font-size: 25px;
  line-height: .8;
  transition: transform .2s ease;
}
.faq-item[open] summary span {
  transform: rotate(45deg);
}
.faq-item > p {
  max-width: 720px;
  color: #69645d;
  line-height: 1.75;
  padding: 0 42px 22px 0;
  overflow: hidden;
  transition: height .38s cubic-bezier(.4, 0, .2, 1),
    opacity .24s ease,
    padding-bottom .38s cubic-bezier(.4, 0, .2, 1);
  will-change: height, opacity;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > p {
    transition: none;
  }
}
.home-contact-section {
  background: #1e2b3e;
  padding: 74px 0;
}
.home-contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.home-enquiry-card,
.home-map-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}
.home-enquiry-card {
  padding: clamp(30px, 4vw, 48px);
}
.home-enquiry-form {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}
.home-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.home-enquiry-form label {
  display: grid;
  gap: 9px;
  width: 100%;
  min-width: 0;
  color: #161616;
  font-size: 13px;
  font-weight: 800;
}
.home-enquiry-form input,
.home-enquiry-form textarea {
  width: 100%;
  border: 1px solid #ded8d0;
  border-radius: 9px;
  background: #faf8f5;
  color: #252525;
  font: 400 14px/1.5 "Roboto", sans-serif;
  padding: 15px 16px;
}
.home-enquiry-form textarea {
  min-height: 150px;
  resize: vertical;
}
.home-enquiry-form input:focus,
.home-enquiry-form textarea:focus {
  outline: 2px solid rgba(150,21,27,.15);
  border-color: var(--red);
}
.home-submit,
.home-directions {
  background: #cd834a;
  color: #fff;
  font-weight: 800;
}
.home-submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  gap: 28px;
  align-items: center;
}
.home-map-card {
  display: grid;
  grid-template-rows: minmax(390px, 1fr) auto;
}
.home-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}
.home-map-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 26px;
}
.home-map-info h3 {
  color: #111;
  font-size: 18px;
  margin-bottom: 5px;
}
.home-map-info > div > p:last-child {
  color: #766e65;
  font-size: 13px;
}
.home-directions {
  flex: none;
  border-radius: 8px;
}

/* ============ CAREERS PAGE ============ */
.job-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.job-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  padding: 26px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.job-card h3 {
  font-size: 18px;
  color: #222;
}
.job-card .job-meta {
  font-size: 13.5px;
  color: #777;
  margin-top: 4px;
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-dark {
  background: var(--black);
  color: #ddd;
  border-radius: 16px;
  padding: 38px;
}
.contact-dark h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 26px;
}
.c-row {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}
.c-icon {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
}
.c-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--black);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.c-row .c-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9c9c9c;
  margin-bottom: 4px;
}
.c-row a {
  color: #fff;
}
.c-row a:hover {
  color: var(--gold);
}
.contact-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-radius: 999px;
  font-weight: 700;
}
.btn-gold:hover {
  filter: brightness(1.05);
}
.btn-ghost-w {
  background: transparent;
  color: #fff;
  border: 1.5px solid #666;
  border-radius: 999px;
}
.btn-ghost-w:hover {
  border-color: #fff;
}
.contact-form-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 38px;
}
.contact-form-card h3 {
  font-size: 22px;
  color: #222;
  margin-bottom: 20px;
}
.form-grid {
  display: grid;
  gap: 14px;
}
.form-2col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.form-grid label {
  display: grid;
  gap: 8px;
  width: 100%;
  min-width: 0;
}
.form-grid .form-group,
.form-grid .form-2col > * {
  width: 100%;
  min-width: 0;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  background: #fafafa;
  color: #333;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-msg {
  background: #eaf6ec;
  color: #256b33;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 14px;
}
.form-msg.err {
  background: #fbeaea;
  color: #8e1b1b;
}
.map-wrap {
  margin-top: 50px;
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* ============ FOOTER ============ */
.footer {
  background: #f7f7f7;
  border-top: 1px solid #e5e5e5;
  padding: 60px 0 40px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
}
.f-about .logo .logo-word-img {
  height: 45px;
}
.f-about .logo .logo-mark-img {
  height: 44px;
}
.f-about p {
  margin-top: 16px;
  color: #555;
  max-width: 320px;
}
.f-about .follow {
  font-weight: 700;
  color: #222;
  margin-top: 22px;
}
.f-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.f-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.f-social svg {
  width: 34px;
  height: 34px;
}
.f-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  border-bottom: 2px solid var(--red);
  padding-bottom: 6px;
  margin-bottom: 20px;
}
.f-loc {
  margin-bottom: 22px;
  color: #555;
}
.f-loc .loc-name {
  color: var(--red);
  font-weight: 700;
}
.f-loc .loc-name a {
  color: #333;
  font-weight: 700;
}
.f-loc .loc-name a:hover {
  color: var(--red);
}
.f-loc b.outlet {
  display: block;
  color: #222;
  margin-top: 2px;
}
.f-links li {
  margin-bottom: 10px;
}
.f-links a {
  color: #555;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.f-links a::before {
  content: "›";
  color: #999;
}
.f-links a:hover {
  color: var(--red);
}
.copyright {
  background: var(--darker);
  color: #bbb;
  text-align: center;
  font-size: 13px;
  padding: 16px 0;
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ============ FLOATING CONTACT + POPUP ============ */
.contact-float {
  position: fixed;
  right: 0;
  top: 52%;
  z-index: 121;
  width: 48px;
  min-height: 148px;
  padding: 14px 10px;
  border: 0;
  border-radius: 12px 0 0 12px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.24);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: width .2s ease, background .2s ease;
}
.contact-float:hover,
.contact-float:focus-visible {
  width: 54px;
  background: #b31720;
}
.contact-float:focus-visible {
  outline: 3px solid rgba(201,126,73,.45);
  outline-offset: 3px;
}
.contact-float svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.contact-float span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .8px;
}
.contact-popup {
  width: min(92vw, 700px);
  max-width: 700px;
  max-height: min(90vh, 820px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: 0 26px 70px rgba(0,0,0,.35);
  overflow: hidden;
}
.contact-popup::backdrop {
  background: rgba(12,19,29,.76);
  backdrop-filter: blur(4px);
}
.contact-popup-panel {
  position: relative;
  max-height: min(90vh, 820px);
  overflow-y: auto;
  background: #fff;
  padding: clamp(28px, 5vw, 48px);
}
.contact-popup-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f2eee8;
  color: #171717;
  cursor: pointer;
  font-size: 29px;
  line-height: 1;
}
.contact-popup-close:hover,
.contact-popup-close:focus-visible {
  background: var(--red);
  color: #fff;
}
.contact-popup h2 {
  color: #111;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.08;
  margin: 0 48px 10px 0;
}
.contact-popup-intro {
  color: #6f6961;
  line-height: 1.65;
  margin-bottom: 24px;
}
.contact-popup-form {
  display: grid;
  gap: 16px;
}
.contact-popup-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-popup-form label {
  display: grid;
  gap: 8px;
  width: 100%;
  min-width: 0;
  color: #171717;
  font-size: 13px;
  font-weight: 800;
}
.contact-popup-form input,
.contact-popup-form select,
.contact-popup-form textarea {
  width: 100%;
  border: 1px solid #ddd5cc;
  border-radius: 9px;
  background: #faf8f5;
  color: #252525;
  font: 400 14px/1.5 "Roboto", sans-serif;
  padding: 13px 15px;
}
.contact-popup-form textarea {
  min-height: 112px;
  resize: vertical;
}
.contact-popup-form input:focus,
.contact-popup-form select:focus,
.contact-popup-form textarea:focus {
  outline: 2px solid rgba(150,21,27,.14);
  border-color: var(--red);
}
.contact-popup-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.contact-popup-actions a:not(.btn) {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}
.contact-popup-actions .btn-whatsapp {
  color: #fff;
}
body.modal-open {
  overflow: hidden;
}

/* ============ GALLERY LIGHTBOX ============ */
.gallery-lightbox {
  width: min(96vw, 1240px);
  max-width: 1240px;
  max-height: 94vh;
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}
.gallery-lightbox::backdrop {
  background: rgba(6, 8, 12, .9);
  backdrop-filter: blur(5px);
}
.gallery-lightbox-panel {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  min-height: min(86vh, 780px);
  padding: 52px 18px 20px;
  border-radius: 14px;
  /* background: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .5); */
}
.gallery-lightbox-figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  min-width: 0;
  height: 100%;
  margin: 0;
}
.gallery-lightbox-figure img {
  width: auto;
  max-width: 100%;
  max-height: calc(86vh - 112px);
  margin: auto;
  border-radius: 8px;
  object-fit: contain;
}
.gallery-lightbox-figure figcaption {
  min-height: 24px;
  padding: 14px 10px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.gallery-lightbox-close,
.gallery-lightbox-nav {
  border: 0;
  color: #fff;
  cursor: pointer;
}
.gallery-lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  font-size: 30px;
  line-height: 1;
}
.gallery-lightbox-nav {
  width: 44px;
  height: 56px;
  justify-self: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  font-size: 42px;
  line-height: .8;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  background: var(--red);
  outline: none;
}
.gallery-lightbox-count {
  position: absolute;
  top: 19px;
  left: 20px;
  color: #d7d7d7;
  font-size: 13px;
}
body.lightbox-open {
  overflow: hidden;
}

/* ============ THANK YOU PAGE ============ */
.thank-you-section {
  position: relative;
  display: grid;
  min-height: 680px;
  padding: clamp(70px, 9vw, 120px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(150, 21, 27, .1), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(200, 120, 63, .14), transparent 30%),
    #f6f3ee;
}
.thank-you-section::before,
.thank-you-section::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(150, 21, 27, .12);
  border-radius: 50%;
  pointer-events: none;
}
.thank-you-section::before {
  top: -180px;
  right: -130px;
  width: 420px;
  height: 420px;
}
.thank-you-section::after {
  bottom: -210px;
  left: -150px;
  width: 480px;
  height: 480px;
}
.thank-you-card {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(38px, 6vw, 68px);
  border: 1px solid #e5ddd3;
  border-top: 5px solid var(--red);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 60px rgba(46, 36, 29, .12);
  text-align: center;
}
.thank-you-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 24px;
  color: var(--red);
}
.thank-you-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}
.thank-you-card .section-eyebrow {
  margin-bottom: 12px;
}
.thank-you-card h1 {
  color: #171717;
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
}
.thank-you-lead {
  max-width: 650px;
  margin: 20px auto 0;
  color: #68625b;
  font-size: 16px;
  line-height: 1.75;
}
.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.thank-you-actions .btn {
  min-width: 180px;
}
.thank-you-call {
  border: 1px solid #cfc5ba;
  background: #fff;
  color: #252525;
}
.thank-you-call:hover,
.thank-you-call:focus-visible {
  border-color: var(--red);
  color: var(--red);
}
.thank-you-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid #e8e1d9;
}
.thank-you-info > div {
  min-width: 0;
  padding: 0 20px;
}
.thank-you-info > div + div {
  border-left: 1px solid #e8e1d9;
}
.thank-you-info span,
.thank-you-info strong {
  display: block;
}
.thank-you-info span {
  margin-bottom: 7px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.thank-you-info strong {
  color: #333;
  font-size: 13px;
  line-height: 1.55;
}

/* Keep every form control aligned, including the telephone plugin wrapper. */
.form-grid input:not([type="hidden"]),
.form-grid select,
.home-enquiry-form input:not([type="hidden"]),
.home-enquiry-form select,
.contact-popup-form input:not([type="hidden"]),
.contact-popup-form select {
  display: block;
  width: 100%;
  min-width: 0;
  height: 54px;
}
.form-grid textarea,
.home-enquiry-form textarea,
.contact-popup-form textarea {
  display: block;
  width: 100%;
  min-width: 0;
}
.form-grid .intl-tel-input,
.home-enquiry-form .intl-tel-input,
.contact-popup-form .intl-tel-input {
  display: block;
  width: 100%;
  min-width: 0;
}
.form-grid .intl-tel-input input[type="tel"],
.home-enquiry-form .intl-tel-input input[type="tel"],
.contact-popup-form .intl-tel-input input[type="tel"] {
  width: 100%;
  height: 54px;
}

/* Consistent category dropdown styling across enquiry forms. */
.form-grid select,
.home-enquiry-form select,
.contact-popup-form select {
  -webkit-appearance: none;
  appearance: none;
  padding: 0 48px 0 16px;
  border: 1px solid #d8d1c9;
  border-radius: 10px;
  background-color: #faf8f5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath d='m4.5 6.75 4.5 4.5 4.5-4.5' fill='none' stroke='%2396151b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  color: #252525;
  font: 500 14px/1.3 "Roboto", sans-serif;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(17, 17, 17, .04);
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.form-grid select:required:invalid,
.home-enquiry-form select:required:invalid,
.contact-popup-form select:required:invalid {
  color: #8a837c;
}
.form-grid select option,
.home-enquiry-form select option,
.contact-popup-form select option {
  background: #fff;
  color: #252525;
  font-weight: 400;
}
.form-grid select:hover,
.home-enquiry-form select:hover,
.contact-popup-form select:hover {
  border-color: #bcb2a8;
  background-color: #fff;
}
.form-grid select:focus,
.home-enquiry-form select:focus,
.contact-popup-form select:focus {
  outline: none;
  border-color: var(--red);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(150, 21, 27, .12);
}
.form-grid select.error,
.home-enquiry-form select.error,
.contact-popup-form select.error {
  border-color: var(--red);
}

/* ============ SITE MOTION & INTERACTION EFFECTS ============ */
.motion-ready .reveal {
  --reveal-x: 0px;
  --reveal-y: 26px;
  --reveal-scale: 1;
  opacity: 0;
  translate: var(--reveal-x) var(--reveal-y);
  scale: var(--reveal-scale);
  filter: blur(3px);
  transition:
    opacity .62s cubic-bezier(.22, 1, .36, 1),
    translate .72s cubic-bezier(.22, 1, .36, 1),
    scale .72s cubic-bezier(.22, 1, .36, 1),
    filter .62s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, translate;
}
.motion-ready .p-card.reveal {
  transition:
    opacity .62s cubic-bezier(.22, 1, .36, 1),
    translate .72s cubic-bezier(.22, 1, .36, 1),
    scale .72s cubic-bezier(.22, 1, .36, 1),
    filter .62s ease,
    transform .65s cubic-bezier(.16, 1, .3, 1),
    box-shadow .55s ease,
    border-color .45s ease;
  transition-delay:
    var(--reveal-delay, 0ms),
    var(--reveal-delay, 0ms),
    var(--reveal-delay, 0ms),
    var(--reveal-delay, 0ms),
    0ms,
    0ms,
    0ms;
  will-change: opacity, translate, transform;
}
.motion-ready .reveal--left {
  --reveal-x: -34px;
  --reveal-y: 0px;
}
.motion-ready .reveal--right {
  --reveal-x: 34px;
  --reveal-y: 0px;
}
.motion-ready .reveal--scale {
  --reveal-y: 14px;
  --reveal-scale: .965;
}
.motion-ready .reveal.is-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
  filter: blur(0);
}
.motion-ready .section-title.reveal::after {
  scale: 0 1;
  transition: scale .58s cubic-bezier(.22, 1, .36, 1) .2s;
}
.motion-ready .section-title.reveal.is-visible::after {
  scale: 1 1;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    translate: 0 24px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes hero-media-in {
  from { scale: 1.035; }
  to { scale: 1; }
}
.motion-ready .slide.active .slide-media img {
  animation: hero-media-in 1.2s cubic-bezier(.22, 1, .36, 1) both;
}
.motion-ready .slide.active .slide-kicker,
.motion-ready .slide.active .slide-copy h2,
.motion-ready .slide.active .slide-sub,
.motion-ready .slide.active .slide-actions {
  animation: hero-copy-in .7s cubic-bezier(.22, 1, .36, 1) both;
}
.motion-ready .slide.active .slide-kicker { animation-delay: .08s; }
.motion-ready .slide.active .slide-copy h2 { animation-delay: .16s; }
.motion-ready .slide.active .slide-sub { animation-delay: .24s; }
.motion-ready .slide.active .slide-actions { animation-delay: .32s; }

.btn:hover,
.btn:focus-visible {
  translate: 0 -2px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
}
.btn:active {
  translate: 0 0;
  scale: .98;
}
.brand-block,
.job-card,
.review-card,
.gallery-item,
.home-enquiry-card,
.home-map-card,
.contact-form-card {
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

@media (hover: hover) {
  .brand-block:hover,
  .job-card:hover,
  .review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(150, 21, 27, .22);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .11);
  }
  .gallery-item:hover,
  .showcase-card:hover,
  .video-box:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, .2);
  }
  .b-logo:hover {
    transform: translateY(-4px);
  }
  .usp-item svg,
  .usp-item .usp-rupee {
    transition: transform .3s cubic-bezier(.22, 1, .36, 1);
  }
  .usp-item:hover svg,
  .usp-item:hover .usp-rupee {
    transform: translateY(-5px) scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .motion-ready .reveal {
    opacity: 1;
    translate: 0 0;
    scale: 1;
    filter: none;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .slides {
    height: 500px;
  }
  .slide-inner {
    width: min(88%, 820px);
  }
  .slide-copy {
    max-width: 500px;
  }
  .slide-media img {
    object-position: 60% center;
  }
  .vb-grid,
  .about-grid,
  .contact-grid,
  .faq-layout,
  .home-contact-grid {
    grid-template-columns: 1fr;
  }
  .faq-intro {
    position: static;
  }
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 210px;
  }
  .home-showcase .showcase-card:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }
  .home-showcase .showcase-card:nth-child(n + 5) {
    display: none;
  }
  .usp-cell {
    padding-right: 14px;
    padding-left: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .brand-block {
    grid-template-columns: 1fr;
  }
  .range-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (min-width: 1000px) {
  .legacy-logo-word {
    height: 85px;
  }
}
@media (max-width: 760px) {
  .container {
    width: calc(100% - 32px);
  }
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
  .reviews {
    padding: 54px 0;
  }
  .review-rating {
    flex-wrap: wrap;
    gap: 7px 9px;
    margin-bottom: 20px;
  }
  .review-rating > span:last-child {
    flex-basis: 100%;
  }
  .review-track {
    width: 100%;
    gap: 12px;
    padding: 5px;
  }
  .review {
    min-height: 260px;
    padding: 25px 22px;
  }
  .review::before {
    top: 18px;
    right: 20px;
    font-size: 68px;
  }
  .review-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .review blockquote {
    font-size: 16px;
  }
  .review-nav {
    display: none;
  }
  .review-footer {
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 15px;
  }
  .review-source-link {
    flex-basis: 100%;
  }
  .top-header {
    padding: 8px 0 9px;
  }
  .th-inner {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }
  .logo {
    gap: 9px;
  }
  .logo .logo-mark-img {
    height: 58px;
  }
  .logo .logo-word-img {
    height: auto;
    width: 270px;
  }
  .th-right {
    width: 100%;
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
  }
  .th-phone {
    gap: 7px;
    font-size: 12.5px;
    line-height: 1.25;
  }
  .th-phone .ph-icon {
    width: 25px;
    height: 25px;
  }
  .phone-separator,
  .phone-break,
  .phone-secondary {
    display: none;
  }
  .th-social {
    gap: 6px;
  }
  .th-social a,
  .th-social svg {
    width: 23px;
    height: 23px;
  }
  .site-navbar {
    z-index: 150;
  }
  .nav-inner {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 32px);
    min-height: 52px;
  }
  .hamburger {
    display: inline-flex;
    margin: 0;
    border: 0;
    background: transparent;
    color: #fff;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 10px 4px;
    font: 700 12px/1 "Roboto", sans-serif;
    letter-spacing: 1.1px;
    text-transform: uppercase;
  }
  .hamburger svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
  }
  .hamburger span,
  .mobile-nav-details span {
    display: block;
    overflow: visible;
    white-space: nowrap;
  }
  .mobile-nav-details {
    display: inline-flex;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 126px;
    min-height: 52px;
    margin: 0;
    padding: 10px 14px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, .18);
    background: var(--red);
    color: #fff;
    cursor: pointer;
    font: 700 11px/1 "Roboto", sans-serif;
    letter-spacing: .55px;
    text-transform: uppercase;
    transition: background-color .25s ease, box-shadow .25s ease;
  }
  .mobile-nav-details svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .25s ease;
  }
  .mobile-nav-details:hover,
  .mobile-nav-details:focus-visible {
    background: #7e1016;
    box-shadow: inset 0 -3px 0 rgba(255, 255, 255, .2);
    outline: none;
  }
  .mobile-nav-details:hover svg,
  .mobile-nav-details:focus-visible svg {
    transform: translateX(3px);
  }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    border: 0;
    background: rgba(8, 10, 14, .68);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(3px);
    transition: opacity .28s ease, visibility .28s ease;
  }
  .nav-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-navbar ul {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: min(86vw, 320px);
    height: 100dvh;
    margin: 0;
    padding: 0 0 28px;
    background: #242424;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    box-shadow: 18px 0 50px rgba(0, 0, 0, .32);
    transform: translateX(-105%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  }
  .site-navbar ul.open {
    transform: translateX(0);
  }
  .mobile-menu-head {
    position: sticky;
    top: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    padding: 8px 16px 8px 18px;
    border-bottom: 3px solid var(--red);
    background: #fff;
  }
  .mobile-menu-head > .mobile-menu-logo {
    display: flex;
    width: min(215px, calc(100% - 54px));
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
  }
  .mobile-menu-logo .logo-mark-img {
    width: auto;
    height: 50px;
  }
  .mobile-menu-logo .logo-word-img {
    width: auto;
    height: 31px;
  }
  .mobile-menu-head button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #f0f0f0;
    color: var(--red);
    font-size: 28px;
    line-height: 1;
  }
  .site-navbar ul > li:not(.mobile-menu-head) {
    width: 100%;
  }
  .site-navbar li > a {
    padding: 15px 22px;
    border-bottom: 1px solid #383838;
    font-size: 12.5px;
    font-weight: 700;
  }
  .site-navbar li > a.active {
    box-shadow: inset 4px 0 #e8c48a;
  }
  .site-nav-dropdown-menu {
    position: static;
    min-width: 0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: none;
    overflow: hidden;
    background: #1b1b1b;
    box-shadow: none;
    transition: max-height .3s ease, opacity .25s ease, visibility .25s ease;
  }
  .site-nav-dropdown.submenu-open .site-nav-dropdown-menu {
    max-height: 340px;
    opacity: 1;
    visibility: visible;
  }
  .site-nav-dropdown-menu a {
    padding: 13px 22px 13px 34px;
    color: #d8d8d8;
    border-color: #333;
    font-size: 13px;
  }
  body.menu-open {
    overflow: hidden;
  }
  body.menu-open .mobile-sticky-footer {
    transform: translateY(110%);
    pointer-events: none;
  }
  .mobile-sticky-footer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 160;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 70px;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 2px solid var(--red);
    background: #fff;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .14);
    transition: transform .25s ease;
  }
  .mobile-footer-action {
    display: flex;
    min-width: 0;
    min-height: 68px;
    margin: 0;
    padding: 8px 4px 7px;
    border: 0;
    border-left: 1px solid #ececec;
    border-radius: 0;
    background: #fff;
    color: #444;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font: 700 11px/1.2 "Roboto", sans-serif;
    text-align: center;
    transition: color .2s ease, background .2s ease;
  }
  .mobile-footer-action:first-child {
    border-left: 0;
  }
  .mobile-footer-action svg {
    width: 23px;
    height: 23px;
    flex: none;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .mobile-footer-action span {
    display: block;
    width: 100%;
    overflow: visible;
    line-height: 1.2;
    white-space: nowrap;
  }
  .mobile-footer-action:hover,
  .mobile-footer-action:focus-visible,
  .mobile-footer-action.active,
  .mobile-footer-menu-toggle[aria-expanded="true"] {
    background: #fff5f5;
    color: var(--red);
  }
  .mobile-footer-whatsapp {
    color: #16884a;
  }
  .mobile-product-backdrop {
    position: fixed;
    inset: 0 0 calc(64px + env(safe-area-inset-bottom));
    z-index: 151;
    display: block;
    border: 0;
    background: rgba(8, 10, 14, .42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
  }
  .mobile-product-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-product-menu {
    position: fixed;
    right: 12px;
    bottom: calc(74px + env(safe-area-inset-bottom));
    z-index: 155;
    display: block;
    width: min(224px, calc(100% - 24px));
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: #242424;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(.96);
    transform-origin: right bottom;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  }
  .mobile-product-menu::after {
    content: "";
    position: absolute;
    right: 29px;
    bottom: -7px;
    width: 14px;
    height: 14px;
    background: #242424;
    transform: rotate(45deg);
  }
  .mobile-product-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .mobile-product-menu p {
    margin: 0;
    padding: 8px 12px 7px;
    color: #aaa;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }
  .mobile-product-menu a {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-top: 1px solid #3b3b3b;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
  }
  .mobile-product-menu a:hover,
  .mobile-product-menu a:focus-visible {
    color: #f3bdc0;
  }
  .cards-grid {
    min-width: 0;
    gap: 26px;
  }
  .p-card-body {
    gap: 12px;
    padding: 18px 20px 12px;
  }
  .p-card-body h3 {
    font-size: 18px;
  }
  .p-card-brand-logos {
    gap: 8px;
    min-height: 48px;
    padding: 0 20px 18px;
  }
  .p-card-brand-logo {
    height: 36px;
    padding: 2px;
  }
  .usp-strip {
    padding: 24px 0;
  }
  .usp-strip > .container {
    width: calc(100% - 20px);
  }
  .usp-row {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .usp-cell:nth-child(-n + 2) {
    grid-column: span 3;
    min-height: 94px;
  }
  .usp-cell:nth-child(n + 3) {
    grid-column: span 2;
    min-height: 82px;
    border-top: 1px solid rgba(255, 255, 255, .26);
  }
  .usp-cell:nth-child(3) {
    border-left: 0;
  }
  .usp-cell {
    padding: 7px 5px;
  }
  .usp-item svg,
  .usp-rupee {
    width: 36px;
    height: 36px;
    margin-bottom: 7px;
  }
  .usp-rupee {
    border-width: 1.5px;
    font-size: 22px;
  }
  .usp-item p {
    font-size: 10.5px;
    line-height: 1.25;
  }
  .usp-stat strong {
    font-size: clamp(22px, 6.5vw, 28px);
  }
  .usp-stat span {
    margin-top: 6px;
    font-size: 9px;
    line-height: 1.3;
    letter-spacing: .15px;
  }
  .page-banner--creative {
    position: relative;
    min-height: 390px;
    background-position: 68% center;
    padding: 54px 0;
  }
  .page-banner--creative::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.68);
  }
  .page-banner--tiles::before {
    background: rgba(249, 247, 243, 0.82);
  }
  .page-banner--creative .container {
    width: 86%;
  }
  .page-banner--creative h1 {
    font-size: 42px;
  }
  .page-banner--creative p {
    max-width: 330px;
    font-size: 14px;
  }
  .slides {
    height: clamp(570px, calc(100svh - 165px), 640px);
  }
  .slide-media img {
    object-position: 64% center;
  }
  .slide--tiles .slide-media img {
    object-position: 67% center;
  }
  .slide--bathware .slide-media img {
    object-position: 62% center;
  }
  .slide--adhesives .slide-media img {
    object-position: 66% center;
  }
  .slide::after {
    background: linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.95) 0%,
      rgba(8, 8, 8, 0.83) 58%,
      rgba(8, 8, 8, 0.58) 100%
    );
  }
  .slide--tiles::after {
    background: linear-gradient(
      90deg,
      rgba(249, 247, 243, 0.97) 0%,
      rgba(249, 247, 243, 0.88) 48%,
      rgba(249, 247, 243, 0.64) 100%
    );
  }
  .slide-inner {
    width: calc(100% - 48px);
  }
  .slide-copy {
    max-width: 330px;
    padding: 48px 0 118px;
  }
  .slide-kicker {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 1.8px;
  }
  .slide-copy h2 {
    font-size: clamp(33px, 9.4vw, 42px);
    line-height: 1.04;
  }
  .slide-sub {
    max-width: 295px;
    font-size: 15px;
    line-height: 1.5;
    margin-top: 16px;
  }
  .slide-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }
  .slide-actions .btn {
    padding: 12px 19px;
  }
  .slide-link {
    padding: 6px 0;
  }
  .hero-arrow {
    top: auto;
    bottom: 58px;
    width: 36px;
    height: 36px;
    transform: none;
    font-size: 26px;
    background: rgba(17, 17, 17, 0.38);
  }
  .hero-arrow.prev {
    left: 18px;
  }
  .hero-arrow.next {
    right: 18px;
  }
  .hero-dots {
    bottom: 74px;
  }
  .hero-dots button {
    width: 22px;
  }
  .hero-dots button.on {
    width: 34px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .contact-float {
    display: flex;
    top: 38%;
    right: 0;
    bottom: auto;
    width: 44px;
    min-height: 132px;
    padding: 12px 9px;
    border-radius: 10px 0 0 10px;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-50%);
  }
  .contact-float:hover,
  .contact-float:focus-visible {
    width: 48px;
  }
  .contact-float span {
    display: block;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 12px;
    letter-spacing: .6px;
  }
  .contact-float svg {
    width: 19px;
    height: 19px;
  }
  .wa-float {
    display: none;
    right: 16px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }
  .wa-float svg {
    width: 27px;
    height: 27px;
  }
  .contact-popup {
    width: min(94vw, 700px);
    max-height: 94vh;
    border-radius: 16px;
  }
  .contact-popup-panel {
    max-height: 94vh;
    padding: 30px 22px 26px;
  }
  .contact-popup-row {
    grid-template-columns: 1fr;
  }
  .contact-popup-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .contact-popup-actions .btn {
    width: 100%;
  }
  .gallery-lightbox {
    width: 96vw;
  }
  .gallery-lightbox-panel {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    min-height: 82vh;
    padding: 48px 8px 14px;
  }
  .gallery-lightbox-figure img {
    max-height: calc(82vh - 105px);
  }
  .gallery-lightbox-nav {
    width: 36px;
    height: 48px;
    font-size: 34px;
  }
  .home-showcase,
  .faq-section {
    padding: 62px 0;
  }
  .showcase-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }
  .showcase-card:first-child,
  .showcase-card:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .home-showcase .showcase-card:nth-child(n + 3) {
    display: none;
  }
  .home-contact-section {
    padding: 42px 0;
  }
  .home-form-row {
    grid-template-columns: 1fr;
  }
  .home-map-card {
    grid-template-rows: 320px auto;
  }
  .home-map-card iframe {
    min-height: 320px;
  }
  .home-map-info {
    align-items: flex-start;
    flex-direction: column;
  }
  .brand-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-2col {
    grid-template-columns: 1fr;
  }
  .video-grid,
  .gallery-grid,
  .range-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .thank-you-section {
    min-height: auto;
    padding: 54px 0;
  }
  .thank-you-info {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .thank-you-info > div {
    padding: 16px 8px;
  }
  .thank-you-info > div + div {
    border-top: 1px solid #e8e1d9;
    border-left: 0;
  }
  .thank-you-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .thank-you-actions .btn {
    width: 100%;
  }
}
@media (max-width: 345px) {
    .logo .logo-word-img {
      height: 50px;
      /* width: 260px; */
  }
}
@media (max-width: 760px) and (max-height: 650px) {
  .contact-float,
  .contact-float:hover,
  .contact-float:focus-visible {
    right: 0;
    width: 42px;
    min-height: 112px;
    padding: 10px 8px;
  }
  .contact-float span {
    display: block;
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .contact-form-card,
  .home-enquiry-card {
    padding: 26px 20px;
  }
  .contact-popup-panel {
    padding-right: 18px;
    padding-left: 18px;
  }
  .home-submit,
  .form-grid .form-action-row .btn,
  .contact-popup-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .form-action-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .p-card-body {
    align-items: flex-start;
  }
  .p-card-actions {
    width: 100%;
  }
  .p-card-body .go {
    flex: 1 1 0;
    justify-content: center;
    min-width: 0;
    padding-right: 7px;
    padding-left: 7px;
    font-size: 10.5px;
  }
  .thank-you-card {
    padding: 34px 20px;
    border-radius: 14px;
  }
  .thank-you-icon {
    width: 70px;
    height: 70px;
  }
}
.error{
  color: var(--red);
}
