/* Shree Som catalog — cream/gold layout (reference site), merged with portal glass aesthetic */

:root {
  --cream: #faf7f2;
  --cream-2: #f4efe6;
  --cream-3: #ede5d8;
  --gold-ref: #b8882a;
  --gold-ref-l: #d4a84b;
  --gold-ref-d: #8b6218;
  --gold-ref-pale: #f7edd5;
  --catalog-ink: #3a3528;
  --catalog-muted: #7a7060;
  --catalog-body: #4a4538;
  --bldc-bg: #f0ebe3;
  --bldc-accent: #6d5c3e;
  --bldc-bg-mid: #ebe4d6;
  --catalog-border: rgba(184, 136, 42, 0.18);
}

body.catalog-theme {
  background: var(--cream);
  color: var(--catalog-body);
}

body.catalog-theme .site-bg,
body.catalog-theme .site-bg-blobs {
  display: none;
}

body.catalog-theme .marquee-band {
  background: var(--gold-ref);
  color: #fff;
  border-bottom: none;
  padding: 0.8rem 0;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}

body.catalog-theme .marquee-item::after {
  content: "·";
  margin-left: 1.25rem;
  opacity: 0.55;
}

body.catalog-theme .site-header {
  background: rgba(250, 247, 242, 0.97);
  border-bottom: 1px solid var(--catalog-border);
}

/* Nav dropdowns */
.nav-dropdown-wrap {
  position: relative;
}

.nav-dd-panel {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--catalog-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 0.4rem 0;
  z-index: 60;
}

.nav-dropdown-wrap:hover .nav-dd-panel,
.nav-dropdown-wrap:focus-within .nav-dd-panel {
  display: block;
}

.nav-dd-panel a {
  display: block;
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--catalog-body);
  text-decoration: none;
  border-left: 2px solid transparent;
}

.nav-dd-panel a:hover {
  background: var(--gold-ref-pale);
  color: var(--gold-ref-d);
  border-left-color: var(--gold-ref);
}

/* Hero */
.catalog-hero {
  position: relative;
  padding: 6.5rem 1.25rem 5rem;
  max-width: 72rem;
  margin: 0 auto;
  overflow: hidden;
}

.catalog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(184, 136, 42, 0.03) 60px,
    rgba(184, 136, 42, 0.03) 61px
  );
  pointer-events: none;
}

.catalog-hero-ring {
  position: absolute;
  right: -4rem;
  top: 50%;
  transform: translateY(-50%);
  width: min(28rem, 55vw);
  height: min(28rem, 55vw);
  border-radius: 50%;
  border: 1px solid rgba(184, 136, 42, 0.12);
  pointer-events: none;
}

.catalog-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.catalog-eyebrow-line {
  width: 2rem;
  height: 2px;
  background: var(--gold-ref);
}

.catalog-eyebrow span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-ref);
}

.catalog-hero-logo img {
  height: clamp(4rem, 12vw, 5.5rem);
  width: auto;
  margin-bottom: 1rem;
}

.catalog-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--catalog-ink);
  margin-bottom: 0.35rem;
}

.catalog-hero h1 em {
  font-style: italic;
  color: var(--gold-ref);
}

.catalog-hero-subtag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--catalog-muted);
  margin-bottom: 1rem;
}

.catalog-hero-rule {
  width: 3.5rem;
  height: 2px;
  background: var(--gold-ref);
  margin-bottom: 1rem;
}

.catalog-hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
  color: var(--catalog-muted);
  max-width: 32rem;
  margin-bottom: 1.25rem;
}

.catalog-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.catalog-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--catalog-border);
  padding: 0.35rem 0.7rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-ref-d);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.catalog-trust-pill img {
  height: 1.35rem;
  width: auto;
  object-fit: contain;
}

.catalog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-catalog-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--gold-ref);
  border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-catalog-primary:hover {
  background: var(--gold-ref-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184, 136, 42, 0.25);
}

.btn-catalog-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-ref-d);
  background: transparent;
  border: 1.5px solid var(--gold-ref-l);
  transition: background 0.2s, border-color 0.2s;
}

.btn-catalog-outline:hover {
  background: var(--gold-ref-pale);
  border-color: var(--gold-ref);
}

.catalog-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--catalog-border);
}

.catalog-stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-ref);
  line-height: 1;
}

.catalog-stat-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--catalog-muted);
  margin-top: 0.2rem;
}

/* Sections */
.catalog-section {
  padding: 3.5rem 1.25rem;
  max-width: 72rem;
  margin: 0 auto;
}

.catalog-section--cream2 {
  background: var(--cream-2);
  max-width: none;
}

.catalog-section--cream2 > .catalog-section-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.catalog-section--white {
  background: #fff;
  max-width: none;
}

.catalog-section--white > .catalog-section-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.catalog-section--bldc,
.catalog-section--fans-blue {
  background: linear-gradient(
    180deg,
    var(--cream-2) 0%,
    var(--gold-ref-pale) 20%,
    var(--bldc-bg-mid) 42%,
    var(--bldc-bg) 58%,
    var(--bldc-bg) 100%
  );
  max-width: none;
}

.catalog-section--bldc > .catalog-section-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.catalog-section--dark {
  background: #2e2b22;
  color: #e8e4dc;
  max-width: none;
}

.catalog-section--dark > .catalog-section-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.section-eyebrow-line {
  width: 1.6rem;
  height: 2px;
  background: var(--gold-ref);
}

.section-eyebrow span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-ref);
}

.section-eyebrow--bldc .section-eyebrow-line,
.section-eyebrow--blue .section-eyebrow-line {
  background: var(--bldc-accent);
}

.section-eyebrow--bldc span,
.section-eyebrow--blue span {
  color: var(--bldc-accent);
}

.catalog-section h2.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--catalog-ink);
  line-height: 1.15;
  margin-bottom: 0.65rem;
}

.catalog-section--dark .section-title {
  color: #fff;
}

.section-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--catalog-muted);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

/* Product nav grid */
.product-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

@media (min-width: 768px) {
  .product-nav-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.prod-nav-card {
  background: #fff;
  border: 1px solid rgba(184, 136, 42, 0.1);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.prod-nav-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-ref);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.prod-nav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(184, 136, 42, 0.14);
}

.prod-nav-card:hover::after {
  transform: scaleX(1);
}

.prod-nav-img {
  width: 100%;
  height: 7rem;
  object-fit: contain;
}

.prod-nav-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--catalog-ink);
  text-align: center;
}

.prod-nav-sub {
  font-size: 0.68rem;
  color: var(--catalog-muted);
  text-align: center;
  line-height: 1.45;
}

.prod-nav-arrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-ref-d);
  border: 1px solid var(--catalog-border);
  padding: 0.3rem 0.75rem;
  transition: all 0.2s;
}

.prod-nav-card:hover .prod-nav-arrow {
  background: var(--gold-ref);
  color: #fff;
  border-color: var(--gold-ref);
}

/* About */
.about-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }
}

.about-frame {
  aspect-ratio: 4/5;
  background: var(--cream);
  border: 1px solid var(--catalog-border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
}

.about-frame .corner {
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
}

.about-frame .c-tl {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--gold-ref);
  border-left: 2px solid var(--gold-ref);
}
.about-frame .c-tr {
  top: -1px;
  right: -1px;
  border-top: 2px solid var(--gold-ref);
  border-right: 2px solid var(--gold-ref);
}
.about-frame .c-bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid var(--gold-ref);
  border-left: 2px solid var(--gold-ref);
}
.about-frame .c-br {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--gold-ref);
  border-right: 2px solid var(--gold-ref);
}

.about-frame img {
  max-width: 9rem;
  height: auto;
}

.about-accent {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  width: 6.5rem;
  height: 6.5rem;
  background: var(--gold-ref);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
}

.about-accent-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.about-accent-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 0 0.35rem;
}

.welcome-body {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--catalog-body);
}

.welcome-body h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  color: var(--gold-ref-d);
  margin: 1.1rem 0 0.5rem;
}

.welcome-body ul {
  padding-left: 1.1rem;
  margin: 0.5rem 0 1rem;
}

.welcome-body li {
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
}

.founder-block {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--gold-ref);
  background: var(--gold-ref-pale);
}

.founder-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  color: var(--gold-ref-d);
}

.founder-title-small {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--catalog-muted);
  margin: 0.2rem 0 0.5rem;
}

.founder-quote {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--catalog-body);
}

.cert-strip {
  display: flex;
  flex-wrap: wrap;
  background: var(--cream-2);
  border: 1px solid var(--catalog-border);
  margin-top: 1.5rem;
}

.cert-badge-big {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.25rem;
  flex: 1;
  min-width: 10rem;
}

.cert-badge-big + .cert-badge-big {
  border-left: 1px solid var(--catalog-border);
}

@media (max-width: 640px) {
  .cert-badge-big + .cert-badge-big {
    border-left: none;
    border-top: 1px solid var(--catalog-border);
  }
}

.cert-badge-big img {
  height: 2rem;
  object-fit: contain;
}

.cert-badge-big strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.8rem;
  color: var(--gold-ref-d);
}

.cert-badge-big span {
  font-size: 0.62rem;
  color: var(--catalog-muted);
}

/* Remote banner */
.remote-banner {
  display: grid;
  gap: 0;
  background: var(--bldc-bg);
  border-bottom: 3px solid var(--gold-ref);
  max-width: none;
  padding: 0;
}

@media (min-width: 768px) {
  .remote-banner {
    grid-template-columns: 1fr 1fr;
  }
}

.remote-banner-img img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
  display: block;
}

.remote-banner-content {
  padding: 2rem 1.5rem;
}

.remote-feat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  margin-bottom: 0.45rem;
}

.rf-icon {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--bldc-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* Spec bars */
.cat-specs-bar {
  background: var(--gold-ref-pale);
  border: 1px solid var(--catalog-border);
  padding: 0.65rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.72rem;
}

.cat-specs-bar--bldc {
  background: #fff;
  border-color: var(--catalog-border);
}

.cat-spec {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-ref-d);
}

.cat-specs-bar--bldc .cat-spec {
  color: var(--bldc-accent);
}

.cat-specs-bar img {
  height: 1.1rem;
}

/* Model grid */
.cat-section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--catalog-ink);
  margin: 1.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-ref-pale);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.size-badge {
  background: var(--gold-ref);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.55rem;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
  gap: 0.85rem;
}

.model-card,
.bldc-card {
  background: #fff;
  border: 1px solid rgba(184, 136, 42, 0.12);
  padding: 1rem 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.bldc-card {
  border-color: rgba(109, 92, 62, 0.18);
}

.model-card:hover,
.bldc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(184, 136, 42, 0.12);
}

.bldc-card:hover {
  box-shadow: 0 8px 32px rgba(109, 92, 62, 0.14);
  border-color: var(--bldc-accent);
}

.model-img-wrap {
  width: 100%;
  height: 9.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-img-wrap--rod {
  height: 6.5rem;
}

.model-img-wrap--pump {
  height: 7rem;
}

.model-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.35s;
}

.model-card:hover .model-img-wrap img,
.bldc-card:hover .model-img-wrap img {
  transform: scale(1.05);
}

.model-divider {
  width: 2rem;
  height: 1px;
  background: var(--catalog-border);
}

.model-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--catalog-ink);
  text-align: center;
}

.model-detail {
  font-size: 0.65rem;
  color: var(--catalog-muted);
  text-align: center;
  line-height: 1.35;
}

.model-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  margin-top: 0.25rem;
}

.model-enquire {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-ref-d);
  border: 1px solid var(--catalog-border);
  padding: 0.3rem 0.55rem;
  transition: all 0.2s;
}

.model-enquire:hover {
  background: var(--gold-ref);
  color: #fff;
  border-color: var(--gold-ref);
}

.bldc-card .model-enquire {
  color: var(--bldc-accent);
  border-color: rgba(109, 92, 62, 0.22);
}

.bldc-card .model-enquire:hover {
  background: var(--bldc-accent);
  border-color: var(--bldc-accent);
  color: #fff;
}

.model-enquire--muted {
  color: var(--catalog-muted);
}

.model-enquire--muted:hover {
  background: #64748b;
  border-color: #64748b;
}

.remote-tag {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-ref-d);
  background: var(--gold-ref-pale);
  border: 1px solid var(--catalog-border);
  padding: 0.15rem 0.4rem;
}

.bldc-adv-inline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--bldc-accent);
  margin-top: 1.5rem;
  border-radius: 0.25rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .bldc-adv-inline {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .bldc-adv-inline {
    grid-template-columns: repeat(6, 1fr);
  }
}

.bldc-adv-item {
  padding: 1rem 0.65rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bldc-adv-icon {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.bldc-adv-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.bldc-adv-text {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

/* Shared product feature strips (pumps = gold, BLDC = blue) */
.product-features-bar,
.pump-features-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 1.25rem;
  border-radius: 0.35rem;
  overflow: hidden;
}

.product-features-bar--pump {
  background: linear-gradient(135deg, #fff 0%, var(--gold-ref-pale) 100%);
  border: 1px solid var(--catalog-border);
}

.product-features-bar--bldc {
  background: linear-gradient(135deg, #fff 0%, var(--gold-ref-pale) 55%, rgba(109, 92, 62, 0.06) 100%);
  border: 1px solid var(--catalog-border);
}

@media (min-width: 640px) {
  .product-features-bar,
  .pump-features-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-features-bar,
  .pump-features-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-features-bar--bldc {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .product-features-bar--bldc {
    grid-template-columns: repeat(6, 1fr);
  }
}

.pf {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem;
  border-bottom: 1px solid var(--catalog-border);
}

.pf-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border-radius: 50%;
  background: var(--gold-ref-pale);
  border: 1px solid var(--catalog-border);
}

.pf-icon--bldc {
  background: var(--gold-ref-pale);
  border-color: var(--catalog-border);
  color: var(--gold-ref-d);
}

.pf-text strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.8rem;
  color: var(--catalog-ink);
}

.pf-text span {
  font-size: 0.68rem;
  color: var(--catalog-muted);
}

/* MII */
.mii-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.mii-logo-wrap img {
  height: 4.5rem;
  object-fit: contain;
  filter: brightness(1.1);
}

.mii-text {
  flex: 1;
  min-width: 16rem;
}

.mii-text p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  background: #fff;
  border: 1px solid rgba(184, 136, 42, 0.1);
  padding: 1.5rem 1.1rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(184, 136, 42, 0.12);
}

.why-icon {
  font-size: 1.75rem;
  margin-bottom: 0.65rem;
}

.why-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--catalog-ink);
  margin-bottom: 0.35rem;
}

.why-desc {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--catalog-muted);
}

/* Portal strip on catalog */
.catalog-portal-strip {
  background: linear-gradient(135deg, #fff 0%, var(--gold-ref-pale) 100%);
  border: 1px solid var(--catalog-border);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-bottom: 0;
}

.catalog-portal-strip .portal-hub {
  margin-top: 0.5rem;
}

/* Support / register CTA */
.support-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .support-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.support-card {
  background: #fff;
  border: 1px solid var(--catalog-border);
  padding: 1.35rem;
  border-radius: 0.25rem;
}

.support-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  color: var(--catalog-ink);
  margin: 0.5rem 0;
}

.support-card p {
  font-size: 0.82rem;
  color: var(--catalog-muted);
  line-height: 1.55;
  margin-bottom: 0.65rem;
}

.support-card a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-ref-d);
  text-decoration: none;
}

.support-card a:hover {
  text-decoration: underline;
}

.register-cta-box {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--cream-2);
  border: 1px solid var(--catalog-border);
  border-radius: 0.5rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.contact-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--catalog-ink);
}

.contact-item span {
  font-size: 0.82rem;
  color: var(--catalog-muted);
  line-height: 1.5;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--gold-ref-d);
  text-decoration: underline;
}

/* Brands */
.brands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.catalog-brand-card {
  background: #fff;
  border: 1px solid var(--catalog-border);
  padding: 1.25rem;
  text-align: center;
  position: relative;
}

.catalog-brand-card img {
  max-height: 5rem;
  width: auto;
  margin: 0.5rem auto 0.75rem;
  object-fit: contain;
}

.catalog-brand-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  color: var(--catalog-ink);
}

.catalog-brand-card p {
  font-size: 0.72rem;
  color: var(--catalog-muted);
  line-height: 1.45;
  margin-top: 0.35rem;
}

.catalog-footer-band {
  background: var(--catalog-ink);
  color: var(--catalog-muted);
  padding: 2.5rem 1.25rem;
  text-align: center;
}

.catalog-footer-band a {
  color: var(--gold-ref-l);
}

/* Visit */
.visit-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .visit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.visit-detail-card {
  background: var(--cream-2);
  border: 1px solid var(--catalog-border);
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
}

.visit-detail-card strong {
  display: block;
  font-size: 0.78rem;
  color: var(--catalog-ink);
  margin-bottom: 0.25rem;
}

.visit-detail-card span {
  font-size: 0.82rem;
  color: var(--catalog-muted);
  line-height: 1.5;
}

/* Mobile layout polish */
@media (max-width: 640px) {
  .catalog-hero {
    padding: calc(var(--header-h, 4rem) + 1.25rem) 1rem 3rem;
  }

  .catalog-hero-ring {
    display: none;
  }

  .catalog-hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .catalog-hero-actions .btn-catalog-primary,
  .catalog-hero-actions .btn-catalog-outline {
    width: 100%;
    text-align: center;
  }

  .catalog-hero-stats {
    gap: 1rem 1.25rem;
  }

  .catalog-stat-num {
    font-size: 1.15rem;
  }

  .catalog-section {
    padding: 2.5rem 1rem;
  }

  .product-nav-grid {
    grid-template-columns: 1fr;
  }

  .prod-nav-img {
    height: 5.5rem;
  }

  .model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .model-img-wrap {
    height: 7rem;
  }

  .model-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.35rem;
  }

  .model-enquire {
    width: 100%;
    text-align: center;
    font-size: 0.58rem;
    padding: 0.45rem 0.35rem;
  }

  .cat-specs-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .cat-spec {
    min-width: 0;
    border-right: none !important;
    border-bottom: 1px solid var(--catalog-border);
  }

  .cat-specs-bar .cat-spec:last-child {
    border-bottom: none;
  }

  .catalog-portal-strip {
    padding: 1rem;
  }

  .portal-hub {
    grid-template-columns: 1fr !important;
  }

  .about-frame {
    min-height: 12rem;
    aspect-ratio: auto;
  }

  .remote-banner-content {
    padding: 1.5rem 1rem;
  }

  .cert-strip {
    flex-direction: column;
  }

  .brands-grid {
    gap: 0.75rem;
  }
}

@media (max-width: 380px) {
  .model-grid {
    grid-template-columns: 1fr;
  }
}

/* Transparent product shots (background removed) */
.model-img-wrap,
.prod-nav-img,
.catalog-brand-card img,
.cert-badge-big img,
.catalog-trust-pill img {
  background: transparent;
}

.model-img-wrap {
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  border-radius: 0.25rem;
}

.bldc-card .model-img-wrap {
  background: linear-gradient(180deg, var(--cream-3) 0%, var(--bldc-bg) 100%);
}

.model-img-wrap img,
.prod-nav-img {
  object-fit: contain;
  mix-blend-mode: normal;
}

/* Contact map */
.contact-grid {
  align-items: start;
}

@media (min-width: 900px) {
  .catalog-section--cream2 .contact-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "details map"
      "visit visit";
  }

  .catalog-section--cream2 .contact-grid > div:first-child {
    grid-area: details;
  }

  .contact-map-block {
    grid-area: map;
  }

  .visit-grid {
    grid-area: visit;
    grid-column: 1 / -1;
  }
}

.contact-map-wrap {
  border: 1px solid var(--catalog-border);
  border-radius: 0.35rem;
  overflow: hidden;
  background: var(--cream-2);
}

.map-open-link {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-ref-d);
  text-decoration: none;
}

.map-open-link:hover {
  text-decoration: underline;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 80;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: currentColor;
}

.whatsapp-float::after {
  content: "Chat on WhatsApp";
  position: absolute;
  right: calc(100% + 0.65rem);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  background: #1a1610;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border-radius: 0.35rem;
  transition: opacity 0.2s, transform 0.2s;
}

.whatsapp-float:hover::after,
.whatsapp-float:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 640px) {
  .whatsapp-float::after {
    display: none;
  }
}

/* Marquee ribbon — portal quick links */
.marquee-band--portal {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.marquee-item--cta {
  text-decoration: none;
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.marquee-item--cta:hover {
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
}

.marquee-band--portal .marquee-item::after {
  margin-left: 1rem;
}

/* Portal CTA after products */
.catalog-section--portal-cta {
  max-width: none;
  background: var(--cream-2);
}

.catalog-portal-strip--wide {
  max-width: 72rem;
  margin: 0 auto;
}

.portal-hub--cta {
  margin-top: 0.5rem;
}

/* Dark mode: gold pump strip, blue fan zone, unified cards */
@media (prefers-color-scheme: dark) {
  .catalog-section--fans-blue,
  .catalog-section--bldc {
    background: linear-gradient(
      180deg,
      var(--theme-bg-2) 0%,
      #221e18 22%,
      var(--theme-bldc-bg) 52%,
      var(--theme-bg) 100%
    );
  }

  .catalog-section--pumps {
    background: var(--theme-bg-2);
  }

  .product-features-bar--pump {
    background: linear-gradient(145deg, #2e2618 0%, #1a1610 50%, #252018 100%);
    border-color: rgba(212, 168, 75, 0.28);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  }

  .product-features-bar--pump .pf-text strong {
    color: var(--gold-ref-l);
  }

  .product-features-bar--pump .pf-icon {
    background: rgba(212, 168, 75, 0.12);
    border-color: rgba(212, 168, 75, 0.25);
  }

  .product-features-bar--bldc {
    background: linear-gradient(145deg, #2e2618 0%, #1a1610 50%, #252018 100%);
    border-color: rgba(212, 168, 75, 0.28);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  }

  .product-features-bar--bldc .pf-text strong {
    color: var(--gold-ref-l);
  }

  .product-features-bar--bldc .pf-text span {
    color: var(--theme-muted);
  }

  .product-features-bar--bldc .pf-icon--bldc {
    background: rgba(212, 168, 75, 0.12);
    border-color: rgba(212, 168, 75, 0.25);
    color: var(--gold-ref-l);
  }

  .model-card,
  .bldc-card,
  .prod-nav-card,
  .support-card,
  .catalog-brand-card,
  .catalog-trust-pill,
  .why-card {
    background: var(--theme-surface);
    border-color: var(--theme-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .bldc-card {
    border-color: rgba(212, 168, 75, 0.18);
  }

  .bldc-card:hover {
    border-color: var(--gold-ref-l);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  }

  .model-name,
  .prod-nav-name,
  .why-title {
    color: var(--theme-ink);
  }

  .model-detail,
  .prod-nav-sub,
  .why-desc {
    color: var(--theme-muted);
  }

  .cat-specs-bar {
    background: var(--theme-gold-pale);
    border-color: var(--theme-border);
  }

  .cat-specs-bar--bldc {
    background: var(--theme-surface);
    border-color: var(--theme-border);
  }

  .cat-specs-bar--bldc .cat-spec {
    color: var(--gold-ref-l);
  }

  .cat-section-title {
    border-bottom-color: var(--theme-border);
    color: var(--theme-ink);
  }

  .size-badge {
    background: var(--gold-ref-d);
  }

  .remote-banner {
    background: var(--bldc-bg);
  }

  .remote-tag {
    color: var(--gold-ref-l);
    background: var(--theme-gold-pale);
    border-color: var(--theme-border);
  }

  .remote-banner-content .section-title {
    color: var(--theme-ink);
  }

  .catalog-section--portal-cta {
    background: var(--theme-bg-2);
  }

  .marquee-item--cta {
    background: rgba(255, 255, 255, 0.12);
  }

  .marquee-item--cta:hover {
    background: rgba(255, 255, 255, 0.22);
  }

  @media (min-width: 1024px) {
    .product-features-bar--pump .pf,
    .product-features-bar--bldc .pf {
      border-bottom: none;
      border-right: 1px solid var(--theme-border);
    }

    .product-features-bar--pump .pf:last-child,
    .product-features-bar--bldc .pf:last-child {
      border-right: none;
    }
  }
}
