/* ======================================
   ENSIGN MANUFACTURING
   Primary: #091c57  |  Background: #fff
   ====================================== */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #ffffff;
  color: #111827;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ======================================
   HEADER
   ====================================== */

.header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(9, 28, 87, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header__logo { display: flex; align-items: center; text-decoration: none; }

.header__logo-img {
  height: 68px;
  width: auto;
  display: block;
}

.header__search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #4b5563;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition: color 0.2s, background 0.2s;
}
.header__search-btn:hover { color: #091c57; background: #f3f4f6; }

/* Nav */
.nav { flex: 1; display: flex; justify-content: center; }

.nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 16px;
  color: #4b5563;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.22s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 24px);
  height: 2px;
  background: linear-gradient(90deg, #091c57, #2d4fd6);
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link:hover,
.nav__item--has-drop:hover > .nav__link { color: #091c57; }

.nav__link:hover::after,
.nav__item--has-drop:hover > .nav__link::after { transform: translateX(-50%) scaleX(1); }

.nav__arrow {
  display: inline-flex;
  font-size: 11px;
  opacity: 0.5;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
}
.nav__item--has-drop:hover .nav__arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown */
.nav__item--has-drop { position: relative; }

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 210px;
  background: #ffffff;
  border: 1px solid rgba(9, 28, 87, 0.10);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(9, 28, 87, 0.13), 0 2px 8px rgba(0,0,0,0.06);
  list-style: none;
  padding: 8px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(0.4,0,0.2,1),
              transform 0.22s cubic-bezier(0.4,0,0.2,1),
              visibility 0.22s;
}

.nav__item--has-drop:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown li + li { margin-top: 2px; }

.nav__drop-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #374151;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 9px;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
}

.nav__drop-link::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #091c57, #2d4fd6);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.18s, transform 0.18s;
}

.nav__drop-link:hover {
  background: #f0f3ff;
  color: #091c57;
  padding-left: 18px;
}
.nav__drop-link:hover::before { opacity: 1; transform: scale(1); }

/* Header Right */
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__cart {
  background: none;
  border: none;
  cursor: pointer;
  color: #374151;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition: color 0.2s, background 0.2s;
}
.header__cart:hover { color: #091c57; background: #f3f4f6; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #374151;
  border-radius: 2px;
}

/* ======================================
   BUTTONS
   ====================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn--enquiry {
  background-color: #091c57;
  color: #ffffff;
  border-color: #091c57;
  font-size: 13.5px;
  padding: 9px 20px;
}
.btn--enquiry:hover {
  background-color: #0d2470;
  border-color: #0d2470;
}

.btn--hero {
  background-color: #2563eb;
  color: #ffffff;
  padding: 13px 28px;
  font-size: 15px;
  border-color: #2563eb;
  margin-top: 8px;
}
.btn--hero:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

/* ======================================
   OUR BRANDS CARDS
   ====================================== */

.brands-section {
  background: #f8f9fb;
  padding: 28px 32px 32px;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.brands-section__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.brands-section__eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 16px;
}

.brands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* ── Card ── */
.brand-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  text-decoration: none;
  color: #111827;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(9,28,87,0.07), 0 1px 2px rgba(0,0,0,0.04);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.25s cubic-bezier(0.4,0,0.2,1);
}
.brand-card:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 24px rgba(9,28,87,0.12), 0 2px 6px rgba(0,0,0,0.05);
}

/* ── Logo banner (left side) ── */
.brand-card__banner {
  width: 220px;
  flex-shrink: 0;
  overflow: hidden;
}

.brand-card__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.brand-card:hover .brand-card__logo { transform: scale(1.05); }

/* ── Content panel (right side) ── */
.brand-card__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
  padding: 0 28px;
  gap: 28px;
  border-left: 1px solid #f0f1f3;
  min-height: 100px;
}

/* Tag pill */
.brand-card__tag {
  display: inline-block;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.brand-card__tag--blue  { background: #e8f0fe; color: #3a6adf; }
.brand-card__tag--navy  { background: #e8ecf8; color: #091c57; }
.brand-card__tag--gold  { background: #fff8d6; color: #8a6a00; }

/* Description */
.brand-card__desc {
  font-size: 13px;
  line-height: 1.55;
  color: #6b7280;
  flex: 1;
  margin: 0;
}

/* CTA */
.brand-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #091c57;
  white-space: nowrap;
  transition: gap 0.22s cubic-bezier(0.4,0,0.2,1);
}
.brand-card:hover .brand-card__cta { gap: 12px; }

.brand-card__cta svg {
  flex-shrink: 0;
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1);
}
.brand-card:hover .brand-card__cta svg { transform: translateX(4px); }

/* accent left border per brand */
.brand-card--manufacturing { border-left: 4px solid #3a6adf; }
.brand-card--site          { border-left: 4px solid #091c57; }
.brand-card--design        { border-left: 4px solid #f5c800; }

@media (max-width: 700px) {
  .brand-card { flex-direction: column; }
  .brand-card__banner { width: 100%; height: 120px; }
  .brand-card__content { flex-direction: column; align-items: flex-start; padding: 16px; gap: 10px; min-height: 0; }
}

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

.hero {
  background:
    radial-gradient(ellipse 75% 80% at 85% 45%, rgba(59,130,246,0.11) 0%, transparent 60%),
    radial-gradient(ellipse 55% 55% at 5%  85%, rgba(99,102,241,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 10%, rgba(14,165,233,0.06) 0%, transparent 50%),
    linear-gradient(155deg, #f4f7ff 0%, #ffffff 40%, #eef4ff 100%);
  padding: 80px 0 60px;
  overflow: hidden;
  position: relative;
}

/* Subtle grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

/* Decorative ring — top right */
.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 60px solid rgba(59,130,246,0.06);
  pointer-events: none;
  z-index: 0;
}

.hero__inner { position: relative; z-index: 1; }

.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 64px;
}

/* Text */
.hero__content {
  flex: 1;
  max-width: 520px;
}

.hero__heading {
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  color: #0d1117;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero__heading-accent {
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__eyebrow {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero__body {
  font-size: 15.5px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 32px;
  max-width: 460px;
}

/* Slideshow */
.hero__image-wrap {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero__slideshow {
  position: relative;
  width: 100%;
  max-width: 680px;
  aspect-ratio: 4/3;
  background: transparent;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide--multiply {
  mix-blend-mode: multiply;
}

.slide--screen {
  mix-blend-mode: screen;
}

/* Dot indicators */
.hero__dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}

.dot.active {
  background: #091c57;
  transform: scale(1.3);
}

/* ======================================
   PRODUCT CATEGORIES
   ====================================== */

.products {
  background: #f9fafb;
  padding: 72px 0 80px;
}

.products__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.products__heading {
  font-size: 22px;
  font-weight: 700;
  color: #0d1117;
  margin-bottom: 32px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #e9ecf4;
  box-shadow: 0 2px 12px rgba(9, 28, 87, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(9, 28, 87, 0.14);
  border-color: #c7d2f0;
}

.product-card__img-wrap {
  position: relative;
  background: #f0f3fa;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 380px;
}

/* Decorative circle in top-right corner */
.product-card__img-wrap::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(9, 28, 87, 0.07);
  pointer-events: none;
}

.product-card__img-wrap::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(9, 28, 87, 0.05);
  pointer-events: none;
}

.product-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
  border-radius: 14px;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.04);
}

.product-card__footer {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #ffffff;
  border-top: 1px solid #f0f2f8;
}

.product-card__label {
  font-size: 15px;
  font-weight: 700;
  color: #0d1117;
  letter-spacing: 0.01em;
}

.product-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #2563eb;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.product-card__btn svg {
  transition: transform 0.2s;
}

.product-card:hover .product-card__btn {
  background: #1d4ed8;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.product-card:hover .product-card__btn svg {
  transform: translateX(3px);
}

@media (max-width: 960px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .products__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ======================================
   COMPANY LOGOS STRIP
   ====================================== */

.logos {
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
  background: #fafafa;
  overflow: hidden;
}

.logos__track-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 22%, black 78%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 22%, black 78%, transparent 100%);
}

.logos__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: scrollLogos 28s linear infinite;
}

.logos__track:hover { animation-play-state: paused; }

@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 90px;
  height: 36px;
}

.logos__item--lg {
  width: 180px;
  height: 72px;
}

.logos__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ======================================
   VALVE CATALOGUE PAGE
   ====================================== */

.cat-hero {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  padding: 48px 0 40px;
}

.cat-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.cat-hero__title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: #0d1117;
  letter-spacing: -0.5px;
  margin: 16px 0 10px;
}

.cat-hero__sub {
  font-size: 16px;
  color: #6b7280;
}

.cat-grid-section {
  background: #f9fafb;
  padding: 48px 0 80px;
}

.cat-grid-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Valve product card */
.vcard {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 24px rgba(9,28,87,0.10), 0 1px 4px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(9,28,87,0.16), 0 2px 8px rgba(0,0,0,0.08);
}

.vcard__img-wrap {
  background: #ffffff;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 16px;
}

.vcard__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.vcard:hover .vcard__img {
  transform: scale(1.04);
}

.vcard__footer {
  padding: 16px 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.vcard__name {
  font-size: 13px;
  font-weight: 800;
  color: #0d1117;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vcard__btn { display: none; }

@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
}

/* ======================================
   VALVE PRODUCT DETAIL PAGE
   ====================================== */

.vprod {
  background: #ffffff;
  padding: 48px 0 80px;
}

.vprod__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Gallery */
.vprod__gallery { position: sticky; top: 100px; }

.vprod__main-img-wrap {
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  padding: 16px;
  box-sizing: border-box;
}

.vprod__main-img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s;
}

.vprod__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.vprod__thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 6px;
  cursor: pointer;
  background: #ffffff;
  transition: border-color 0.2s;
}

.vprod__thumb:hover { border-color: #93a8d8; }
.vprod__thumb.active { border-color: #091c57; }

/* Info */
.vprod__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2563eb;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.vprod__back:hover { color: #1d4ed8; }

.vprod__title {
  font-size: 26px;
  font-weight: 800;
  color: #0d1117;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.vprod__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
}

.vprod__price {
  font-size: 28px;
  font-weight: 700;
  color: #0d1117;
}

.vprod__price-vat {
  font-size: 13px;
  color: #6b7280;
  font-weight: 400;
}

.vprod__label {
  font-size: 13.5px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 8px;
}

/* Variants tabs */
.vprod__variants {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 20px;
  gap: 0;
}

.vprod__variant {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.vprod__variant:hover { color: #091c57; }

.vprod__variant.active {
  color: #091c57;
  font-weight: 700;
  border-bottom-color: #091c57;
}

/* Properties table */
.vprod__props-wrap {
  overflow-x: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #f0f2f8;
}

.vprod__props {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.vprod__props th {
  font-weight: 700;
  color: #2563eb;
  padding: 10px 14px;
  text-align: center;
  background: #f8faff;
  border-bottom: 1px solid #e5e7eb;
}

.vprod__props td {
  text-align: center;
  padding: 10px 14px;
  color: #374151;
  font-weight: 500;
}

/* Materials */
.vprod__materials {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.vprod__mat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  min-width: 90px;
  justify-content: space-between;
}

.vprod__mat:hover { border-color: #2563eb; }

.vprod__mat.active {
  border-color: #091c57;
  background: #f0f4ff;
  color: #091c57;
  font-weight: 600;
}

.vprod__check { flex-shrink: 0; }

/* Add to cart row */
.vprod__cart-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 28px;
}

.vprod__add-btn {
  flex: 1;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 15px 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}

.vprod__add-btn:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}

.vprod__pdf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.vprod__pdf-btn:hover { border-color: #e53e3e; background: #fff5f5; }

.vprod__divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 0 0 20px;
}

/* Description */
.vprod__desc-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #091c57;
  margin-bottom: 12px;
}

.vprod__desc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vprod__desc-list li {
  position: relative;
  padding: 5px 0 5px 18px;
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
}

.vprod__desc-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .vprod__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vprod__gallery { position: static; }
}

/* ======================================
   PRODUCT PAGE (individual pages)
   ====================================== */

.product-page {
  background: #f9fafb;
  min-height: calc(100vh - 70px);
  padding: 60px 0 80px;
}

.product-page__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
}

.product-page__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2563eb;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 28px;
  width: fit-content;
  transition: color 0.2s;
}
.product-page__back:hover { color: #1d4ed8; }

.product-page__title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: #0d1117;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.product-page__subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 36px;
  max-width: 600px;
}

.product-page__image-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  margin-bottom: 36px;
}

.product-page__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.product-page__body {
  font-size: 16px;
  line-height: 1.85;
  color: #374151;
  max-width: 720px;
}

/* ======================================
   POLICY PAGE
   ====================================== */

.policy {
  background: #ffffff;
  padding: 64px 0 80px;
}

.policy__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}

.policy__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #0d1117;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.policy__intro {
  font-size: 15.5px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy__section-title {
  font-size: 18px;
  font-weight: 700;
  color: #091c57;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e5e7eb;
}

.policy p {
  font-size: 15px;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 14px;
}

.policy__list {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px 0;
}

.policy__list li {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid #f3f4f6;
}

.policy__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #091c57;
  font-weight: 600;
}

.policy__reg {
  margin-top: 8px;
  font-size: 14px;
  color: #6b7280;
}

/* ======================================
   PRODUCT SHOWCASE (Microsoft Surface-style)
   ====================================== */

.showcase {
  background: #f0f0ec;
  padding: 20px 0 18px;
  overflow: hidden;
}

/* Stage: overflow-clipped viewport + flanking nav buttons */
.showcase__stage {
  display: flex;
  align-items: center;
}

.showcase__viewport {
  flex: 1;
  overflow: hidden;
  /* clip the sliding track */
}

/* Track: JS sets translateX to centre the active slide */
.showcase__track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Each slide — fixed width; opacity & scale controlled by JS */
.showcase__slide {
  flex: 0 0 280px;
  width: 280px;
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.15; /* overridden immediately by goToSlide(0) */
}

.showcase__img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

/* Centred caption — text updates via JS on each slide change */
.showcase__caption {
  text-align: center;
  margin-top: 12px;
  padding: 0 24px;
  min-height: 70px;
}

.showcase__name {
  font-size: 18px;
  font-weight: 700;
  color: #0d1117;
  margin-bottom: 6px;
  transition: opacity 0.3s;
}

.showcase__desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.showcase__cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.showcase__cta:hover { border-bottom-color: #2563eb; }

/* Circular nav buttons */
.showcase__nav {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.10);
  font-size: 26px;
  line-height: 1;
  color: #111827;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  z-index: 2;
}

.showcase__nav:hover {
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  transform: scale(1.08);
}

/* Dots */
.showcase__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.showcase__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.showcase__dot.active {
  background: #2563eb;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .showcase__slide { flex: 0 0 200px; width: 200px; }
  .showcase__img { height: 220px; }
  .showcase__nav { width: 40px; height: 40px; font-size: 20px; margin: 0 6px; }
  .showcase__name { font-size: 18px; }
}

/* ======================================
   CONTACT PAGE
   ====================================== */

/* Hero */
.contact-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 90% 50%, rgba(59,130,246,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 5%  90%, rgba(99,102,241,0.09) 0%, transparent 55%),
    linear-gradient(155deg, #f4f7ff 0%, #ffffff 40%, #eef4ff 100%);
  padding: 100px 32px 80px;
  text-align: center;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.contact-hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 56px solid rgba(59,130,246,0.06);
  pointer-events: none;
}
.contact-hero__ring--1 { width: 480px; height: 480px; top: -160px; right: -140px; }
.contact-hero__ring--2 { width: 300px; height: 300px; bottom: -120px; left: -80px; border-width: 36px; opacity: 0.7; }

.contact-hero__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

.contact-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(37,99,235,0.08);
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.contact-hero__heading {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  color: #0d1117;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.contact-hero__accent {
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero__sub {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* Main layout */
.contact-main {
  padding: 80px 32px;
  background: #f9fafb;
}

.contact-main__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

/* Info cards */
.contact-info { display: flex; flex-direction: column; gap: 16px; }

.cinfo-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.cinfo-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.cinfo-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(37,99,235,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
}

.cinfo-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 4px;
}

.cinfo-card__value {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  line-height: 1.6;
  text-decoration: none;
}

.cinfo-card__value:hover { color: #2563eb; }
.cinfo-card__address { font-style: normal; }

/* Form */
.contact-form {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.05);
}

.contact-form__header { margin-bottom: 32px; }

.contact-form__title {
  font-size: 22px;
  font-weight: 700;
  color: #0d1117;
  margin-bottom: 6px;
}

.contact-form__sub { font-size: 14px; color: #6b7280; }

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form__group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.contact-form__row .contact-form__group { margin-bottom: 0; }

.contact-form__label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.contact-form__input {
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: #111827;
  background: #fafafa;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.contact-form__input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.10);
  background: #fff;
}

.contact-form__select { cursor: pointer; }

.contact-form__textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.contact-form__btn:hover { opacity: 0.88; transform: translateY(-1px); }
.contact-form__btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.contact-form__success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 18px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #15803d;
}

/* Map */
.contact-map {
  height: 420px;
  width: 100%;
}

.contact-map iframe { display: block; width: 100%; height: 100%; }

/* Active nav link */
.nav__link--active { color: #2563eb !important; }

@media (max-width: 900px) {
  .contact-main__inner { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .contact-form__row { grid-template-columns: 1fr; }
}

/* ======================================
   RELATED PRODUCTS / SUGGESTIONS
   ====================================== */

.suggestions {
  background: #f8f9fb;
  padding: 48px 32px;
  border-top: 1px solid #e5e7eb;
}

.suggestions__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.suggestions__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.suggestions__title {
  font-size: 20px;
  font-weight: 700;
  color: #0d1117;
}

.suggestions__arrows {
  display: flex;
  gap: 8px;
}

.suggestions__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #d1d5db;
  background: #fff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #374151;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.suggestions__arrow:hover {
  background: #091c57;
  border-color: #091c57;
  color: #fff;
}

.suggestions__fade-wrap {
  position: relative;
  overflow: hidden;
}

.suggestions__fade-wrap::before,
.suggestions__fade-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 1;
  pointer-events: none;
}

.suggestions__fade-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fb, transparent);
}

.suggestions__fade-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f8f9fb, transparent);
}

.suggestions__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px 8px;
}

.suggestions__track::-webkit-scrollbar { display: none; }

.scard {
  flex: 0 0 230px;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  transition: box-shadow 0.2s, transform 0.2s;
}

.scard:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.scard__img-wrap {
  width: 100%;
  background: #ffffff;
  padding: 8px;
  box-sizing: border-box;
}

.scard__img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  transition: transform 0.3s;
}

.scard:hover .scard__img { transform: scale(1.05); }

.scard__name {
  font-size: 12.5px;
  font-weight: 600;
  color: #111827;
  padding: 10px 12px;
  line-height: 1.4;
}

/* ======================================
   FOOTER
   ====================================== */

.footer {
  background: #111827;
  color: #d1d5db;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 32px 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.footer__heading {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__item {
  margin-bottom: 10px;
}

.footer__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.footer__value {
  font-size: 12.5px;
  color: #93c5fd;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}
.footer__value:hover { color: #bfdbfe; }

.footer__address {
  font-style: normal;
  color: #9ca3af;
  line-height: 1.65;
  font-size: 12.5px;
}

/* Brand logos strip */
.footer__brands {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 32px;
  border-top: 1px solid #1f2937;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.footer__brands-label {
  font-size: 10px;
  font-weight: 700;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer__brand-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.footer__brand-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  flex: 1;
}
.footer__brand-logo-item:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.footer__brand-def {
  font-size: 9.5px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.3;
  order: 2;
}

.footer__brand-logo-item img {
  height: 46px;
  width: auto;
  display: block;
  border-radius: 4px;
  flex-shrink: 0;
  order: 1;
}

/* Map */
.footer__map {
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.footer__bottom {
  border-top: 1px solid #1f2937;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom p {
  font-size: 13px;
  color: #6b7280;
}

.footer__policy-link {
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__policy-link:hover { color: #60a5fa; }

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 20px 20px;
  }
  .footer__map { height: 160px; }
  .footer__brands {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 20px;
  }
  .footer__brand-logos { flex-wrap: wrap; gap: 10px; }
}

/* ======================================
   RESPONSIVE
   ====================================== */

@media (max-width: 960px) {
  .hero__inner {
    flex-direction: column;
    padding: 40px 24px 48px;
    gap: 48px;
    text-align: center;
  }
  .hero__content { max-width: 100%; }
  .hero__body { max-width: 100%; }
  .hero__image-wrap { width: 100%; min-height: 300px; }
  .btn--hero { margin: 8px auto 0; }
}

@media (max-width: 640px) {
  .header__inner { padding: 0 20px; }
  .nav { display: none; }
  .btn--enquiry { display: none; }
  .header__burger { display: flex; }
}
