:root {
  --template-color: #0f172a;
  --template-accent: #f4b400;
  --template-heading: #0f172a;
  --template-text: #334155;
  --template-muted: #f8fafc;
  --template-surface: #ffffff;
  --template-border: #dbe3ef;
  --template-radius: 12px;
}

body.lotus-nav-open {
  overflow: hidden;
}
.customer-register-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.64);
  backdrop-filter: blur(4px);
}
.customer-register-modal {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.3);
}
.customer-register-close {
  position: absolute;
  right: 18px;
  top: 14px;
  border: 0;
  background: transparent;
  color: #64748b;
  font-size: 30px;
  cursor: pointer;
}
.customer-register-modal h2 {
  margin: 8px 0;
  font-size: 26px;
}
.customer-register-modal h2 + p {
  margin: 0 0 22px;
  color: #64748b;
}
.customer-register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.customer-register-grid .wide {
  grid-column: 1 / -1;
}
.customer-register-modal label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}
.customer-register-modal label small {
  display: inline;
  color: #94a3b8;
  font-weight: 400;
}
.customer-register-modal input,
.customer-register-modal select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  font: inherit;
}
.customer-register-modal [data-register-otp-panel] form {
  display: grid;
  gap: 16px;
}
.customer-register-delivery {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: -8px 0 18px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f8fafc;
  color: #475569;
  font-size: 13px;
}
.customer-register-delivery span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #94a3b8;
}
.customer-register-delivery.sending span {
  border: 2px solid #cbd5e1;
  border-top-color: var(--template-primary, #4f46e5);
  background: transparent;
  animation: customer-otp-spin 0.7s linear infinite;
}
.customer-register-delivery.sent {
  background: #ecfdf5;
  color: #047857;
}
.customer-register-delivery.sent span {
  background: #10b981;
}
@keyframes customer-otp-spin {
  to {
    transform: rotate(360deg);
  }
}
.customer-otp-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.customer-otp-field legend {
  margin-bottom: 9px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}
.customer-otp-boxes {
  display: grid;
  grid-template-columns: repeat(6, 54px);
  gap: 10px;
}
.customer-register-modal .customer-otp-boxes input {
  width: 54px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  text-align: center;
  border-radius: 10px;
  font-size: 24px;
  font-weight: 800;
  caret-color: var(--template-primary, #4f46e5);
}
.customer-register-modal .customer-otp-boxes input:focus {
  border-color: var(--template-primary, #4f46e5);
  outline: 3px solid
    color-mix(in srgb, var(--template-primary, #4f46e5) 15%, transparent);
}
.customer-register-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 20px;
  border: 0;
  border-radius: 11px;
  background: var(--template-primary, #4f46e5);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.customer-register-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}
.customer-register-login-link {
  display: inline;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--template-primary, #4f46e5);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
.customer-register-login-link[hidden] {
  display: none;
}
.auth-forgot-link {
  margin: -8px 0 14px;
  text-align: right;
}
.customer-register-back {
  width: 100%;
  border: 0;
  background: transparent;
  color: #475569;
  cursor: pointer;
}
.customer-register-error {
  min-height: 20px;
  margin: 10px 0 0;
  color: #dc2626;
  font-size: 14px;
}
@media (max-width: 600px) {
  .customer-register-modal {
    padding: 24px 18px;
  }
  .customer-register-grid {
    grid-template-columns: 1fr;
  }
  .customer-register-grid .wide {
    grid-column: auto;
  }
  .customer-otp-boxes {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
  }
  .customer-register-modal .customer-otp-boxes input {
    width: 100%;
    height: 52px;
    min-height: 52px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--template-body-font, Inter, Arial, sans-serif);
  font-size: var(--template-body-size, 16px);
  color: var(--template-text);
  background: var(--template-background, var(--template-muted));
}

/* Deliberately different storefront compositions for the three B2B catalogues. */
.nexus-cinematic-hero{position:relative;min-height:calc(100vh - 112px);overflow:hidden;background:#070a11;color:#fff}
.nexus-cinematic-media,.nexus-cinematic-media img{position:absolute;inset:0;width:100%;height:100%}
.nexus-cinematic-media img{object-fit:cover;filter:saturate(.76) contrast(1.05)}
.nexus-cinematic-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(4,7,13,.96) 0%,rgba(4,7,13,.84) 38%,rgba(4,7,13,.12) 75%),linear-gradient(0deg,rgba(4,7,13,.72),transparent 52%)}
.nexus-cinematic-copy{position:relative;z-index:2;display:flex;min-height:calc(100vh - 112px);max-width:760px;padding:clamp(100px,18vh,190px) clamp(40px,7vw,120px) 80px;flex-direction:column;justify-content:flex-end}
.nexus-cinematic-copy h1{max-width:730px;margin:24px 0;font-size:clamp(60px,7.4vw,132px);line-height:.86;letter-spacing:-.065em;text-transform:none}
.nexus-cinematic-copy .hero-subtitle{max-width:610px;color:#cbd5e1;font-size:clamp(18px,1.45vw,25px)}
.nexus-cinematic-copy .eyebrow{color:#d7ff39;letter-spacing:.24em}
.nexus-cinematic-index{position:absolute;z-index:2;top:48px;left:clamp(40px,7vw,120px);color:#93a4c3;font:700 13px/1 monospace;letter-spacing:.3em}
.nexus-cinematic-copy .btn{border-radius:0;background:#d7ff39;color:#071008}.nexus-cinematic-copy .btn.secondary{border-color:#fff;background:transparent;color:#fff}

.hydronex-type-hero{min-height:calc(100vh - 112px);padding:52px clamp(34px,5vw,88px) 48px;background:#032a2d;color:#eafffa;border-bottom:1px solid #00efc3}
.hydronex-signal{display:flex;justify-content:space-between;margin-bottom:clamp(70px,12vh,130px);padding-bottom:18px;border-bottom:1px solid rgba(0,239,195,.45);color:#00efc3;font:700 12px/1.2 monospace;letter-spacing:.18em}
.hydronex-type-hero>.eyebrow{display:inline-block;padding:14px 18px;border:1px solid #00efc3;color:#00efc3}
.hydronex-type-hero h1{max-width:1500px;margin:26px 0 50px;font:800 clamp(72px,10.4vw,190px)/.78 Arial,sans-serif;letter-spacing:-.075em;text-transform:uppercase}
.hydronex-lower{display:grid;grid-template-columns:minmax(260px,.9fr) minmax(260px,.75fr) minmax(340px,1fr);gap:40px;align-items:end;border-top:1px solid rgba(234,255,250,.3);padding-top:28px}
.hydronex-lower .hero-subtitle{margin:0;color:#afe9df;font:18px/1.55 monospace}.hydronex-lower .btn{border-radius:0;background:#00efc3;color:#032a2d}.hydronex-lower .btn.secondary{background:transparent;color:#eafffa;border-color:#00efc3}
.hydronex-metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}.hydronex-metrics div{border-left:1px solid #00efc3;padding-left:16px}.hydronex-metrics b{display:block;font:700 30px/1 Arial}.hydronex-metrics span{display:block;margin-top:7px;color:#83c9be;font:11px monospace;text-transform:uppercase;letter-spacing:.15em}

.oragze-market-hero{position:relative;display:grid;grid-template-columns:minmax(0,1fr) minmax(420px,.92fr);gap:0;max-width:1780px;min-height:500px;margin:28px auto 18px;overflow:hidden;border-radius:42px;background:#eff8cf;color:#123f2b}
.oragze-market-copy{padding:clamp(48px,6vw,100px)}.oragze-market-copy h1{max-width:780px;margin:20px 0;font-size:clamp(58px,6vw,108px);line-height:.9;letter-spacing:-.055em;color:inherit}.oragze-market-copy .eyebrow{color:inherit}.oragze-market-copy .hero-subtitle{max-width:580px;color:inherit;opacity:.88;font-size:20px}
.oragze-pill{display:inline-flex;margin-bottom:34px;padding:10px 15px;border-radius:100px;background:#fff;color:#247640;font:800 12px/1 Arial;letter-spacing:.14em}
.oragze-market-image{min-height:500px;overflow:hidden;border-radius:45% 0 0 45%}.oragze-market-image img{width:100%;height:100%;object-fit:cover}
.oragze-market-note{position:absolute;right:28px;bottom:28px;display:flex;max-width:300px;padding:18px 22px;flex-direction:column;border-radius:18px;background:#fff;color:#123f2b;box-shadow:0 12px 36px rgba(18,63,43,.18)}.oragze-market-note span{margin-top:5px;color:#5d7564;font-size:13px}
.oragze-market-copy .btn{border-radius:100px;background:var(--template-color,#247640)}.oragze-market-copy .btn.secondary{background:#fff;color:var(--template-color,#247640);border-color:var(--template-color,#247640)}
.variant-oragze #products{max-width:1780px;margin:0 auto;padding-top:48px;background:#fff}.variant-oragze #products .section-head h2{font-size:clamp(42px,5vw,82px);color:#123f2b}.variant-oragze #products .product-card{border-radius:24px;background:#f6f9ef}

@media(max-width:900px){.nexus-cinematic-copy{padding:110px 24px 54px}.nexus-cinematic-index{left:24px}.hydronex-type-hero{padding:40px 24px}.hydronex-lower{grid-template-columns:1fr}.oragze-market-hero{margin:12px;grid-template-columns:1fr;border-radius:26px}.oragze-market-image{min-height:360px;border-radius:28px 28px 0 0;grid-row:1}.oragze-market-copy{grid-row:2;padding:38px 26px}.oragze-market-note{display:none}}

/* Hydronex is one continuous technical-green system, including shared sections. */
body.variant-b2bn main > .section{background:#032a2d!important;color:#afe9df!important;border-color:#176066!important}
body.variant-b2bn main > .section:nth-of-type(even){background:#062f33!important}
body.variant-b2bn main > .section h2,
body.variant-b2bn main > .section h3,
body.variant-b2bn main > .section strong{color:#eafffa!important}
body.variant-b2bn main > .section .eyebrow{color:#00efc3!important}
body.variant-b2bn main > .section .section-head{border-color:#247178!important}
body.variant-b2bn main > .section .content-card,
body.variant-b2bn main > .section .product-card,
body.variant-b2bn main > .section .industry-card,
body.variant-b2bn main > .section .testimonial-card,
body.variant-b2bn main > .section .faq-item,
body.variant-b2bn main > .section details{background:#0a3a3f!important;color:#afe9df!important;border-color:#28747b!important;box-shadow:none!important}
body.variant-b2bn main > .section input,
body.variant-b2bn main > .section textarea,
body.variant-b2bn main > .section select{background:#062528!important;color:#eafffa!important;border-color:#28747b!important}

body.variant-b2bn{background:#032a2d!important;color:#afe9df;font-family:Arial,sans-serif}
body.variant-b2bn .site-header .brand,
body.variant-b2bn .site-header .brand span,
body.variant-b2bn .site-header .brand strong{color:#eafffa!important}
body.variant-b2bn main>.runtime-section{width:100%;max-width:none;padding:96px 4vw;background:#032a2d!important;color:#afe9df!important;border-bottom:1px solid #176066}
body.variant-b2bn main>.runtime-section:nth-of-type(even){background:#062f33!important}
body.variant-b2bn .runtime-section-head{max-width:1080px;margin:0 0 46px;padding:0 0 24px 20px;text-align:left;border-left:4px solid #00efc3;border-bottom:1px solid #247178}
body.variant-b2bn .runtime-section-head .eyebrow{color:#00efc3!important;font:700 12px/1.2 monospace;letter-spacing:.2em}
body.variant-b2bn .runtime-section-head h2,
body.variant-b2bn .runtime-section h2{color:#eafffa!important;font:800 clamp(42px,5vw,76px)/.92 Arial,sans-serif!important;letter-spacing:-.045em;text-transform:uppercase}
body.variant-b2bn .runtime-section-head p{color:#8fcfc5!important;font-family:monospace}
body.variant-b2bn .runtime-card-grid,
body.variant-b2bn .runtime-process-grid{gap:16px}
body.variant-b2bn .runtime-feature-card,
body.variant-b2bn .runtime-process-card,
body.variant-b2bn .runtime-testimonial-card{min-height:260px;padding:30px;border:1px solid #28747b!important;border-radius:0!important;background:#0a3a3f!important;color:#afe9df!important;box-shadow:none!important}
body.variant-b2bn .runtime-feature-card h3,
body.variant-b2bn .runtime-process-card h3,
body.variant-b2bn .runtime-testimonial-card h3{color:#eafffa!important;font:700 20px/1.25 monospace!important}
body.variant-b2bn .runtime-feature-card p,
body.variant-b2bn .runtime-process-card p,
body.variant-b2bn .runtime-testimonial-card p{color:#9bcfc7!important;font-family:Arial,sans-serif}
body.variant-b2bn .runtime-card-icon{display:grid;width:42px;height:42px;place-items:center;border:1px solid #00efc3;border-radius:0;background:transparent;color:#00efc3}
body.variant-b2bn .runtime-process-card>strong{display:grid;width:58px;height:58px;place-items:center;margin-bottom:25px;border:1px solid #00efc3;border-radius:0!important;background:#062528!important;color:#00efc3!important;font-family:monospace}
body.variant-b2bn .runtime-stars{color:#00efc3!important}
body.variant-b2bn .runtime-area-list a,
body.variant-b2bn .runtime-area-list span{border:1px solid #28747b!important;border-radius:0!important;background:#0a3a3f!important;color:#eafffa!important;font-family:monospace}

/* Final product-card geometry overrides intentionally come after the shared
   catalogue stabilizer so each redesigned template retains its identity. */
.variant-businesstobusiness .products-grid > .product-card {
  border-radius: 2px !important;
  background: #111620 !important;
  border-color: #293142 !important;
  box-shadow: none !important;
}
.variant-businesstobusiness .products-grid .product-image { height: 340px !important; min-height: 340px !important; }
.variant-b2bn .products-grid > .product-card {
  border-radius: 0 !important;
  background: #0b3035 !important;
  border-color: #2a5f65 !important;
  box-shadow: inset 3px 0 #00d6a3 !important;
}
.variant-b2bn .products-grid .product-image { height: 230px !important; min-height: 230px !important; border-bottom:1px solid #2a5f65; }
.variant-oragze .products-grid > .product-card {
  border-radius: 26px !important;
  background: #fff !important;
  border-color: #dbe7d7 !important;
  box-shadow: 0 12px 28px rgba(52,91,58,.08) !important;
}
.variant-oragze .products-grid .product-image { height: 280px !important; min-height: 280px !important; margin:10px; width:calc(100% - 20px)!important; border-radius:20px; }

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.runtime-loading {
  min-height: 100vh;
  display: grid;
  place-items: center;
  gap: 12px;
  color: #64748b;
}

.runtime-error-page {
  min-height: clamp(420px, 62vh, 720px);
  display: grid;
  place-items: center;
  padding: 48px 20px;
  background: var(--template-muted, #f8fafc);
}

.runtime-error-card {
  width: min(100%, 560px);
  text-align: center;
}

.runtime-error-icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--template-color, #0f172a) 12%, white);
  color: var(--template-color, #0f172a);
  font-size: 30px;
  font-weight: 900;
}

.runtime-error-card h1 {
  margin: 18px 0 0;
  color: var(--template-heading, #0f172a);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.runtime-error-card p {
  margin: 12px 0 0;
  color: var(--template-text, #64748b);
  font-size: 17px;
}

.runtime-error-card a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  border-radius: 999px;
  background: var(--template-color, #0f172a);
  color: #fff;
  padding: 0 26px;
  font-weight: 900;
}

.product-navigation-loader {
  position: fixed;
  inset: 0;
  z-index: 300000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.32);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.runtime-click-busy {
  position: relative !important;
  pointer-events: none !important;
}

.runtime-click-busy::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(15, 23, 42, 0.18);
  border-top-color: var(--template-primary, var(--template-accent, #4f46e5));
  border-radius: 50%;
  animation: product-navigation-spin 0.72s linear infinite;
  z-index: 2;
}

.product-card,
.lotus-product-card {
  cursor: pointer;
}

.product-navigation-loader[hidden] {
  display: none;
}

.product-navigation-loader-card {
  display: grid;
  min-width: min(260px, calc(100vw - 48px));
  justify-items: center;
  gap: 14px;
  padding: 20px;
  background: transparent;
}

.product-navigation-loader-card img {
  width: auto;
  max-width: 180px;
  height: 72px;
  object-fit: contain;
}

.product-navigation-loader-fallback {
  display: none;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 18px;
  background: var(--template-primary, var(--template-color, #0f172a));
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

.product-navigation-loader-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #dbe3ef;
  border-top-color: var(--template-primary, var(--template-accent, #4f46e5));
  border-radius: 50%;
  animation: product-navigation-spin 0.72s linear infinite;
}

.product-navigation-loader-card p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(15, 23, 42, 0.8);
}

body.product-navigation-loading {
  overflow: hidden;
}

@keyframes product-navigation-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-navigation-loader-spinner {
    animation-duration: 1.5s;
  }
}

.runtime-skeleton {
  min-height: 100vh;
  background: #f8fafc;
  color: transparent;
}

.runtime-skeleton span,
.skeleton-logo,
.skeleton-back,
.skeleton-product-image,
.skeleton-price,
.skeleton-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #e8eef6;
}

.runtime-skeleton span::after,
.skeleton-logo::after,
.skeleton-back::after,
.skeleton-product-image::after,
.skeleton-price::after,
.skeleton-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.72),
    transparent
  );
  animation: skeleton-shimmer 1.25s ease-in-out infinite;
}

@keyframes skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.skeleton-topbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - 1680px) / 2 + 32px));
  background: #0f5b93;
}

.skeleton-topbar span {
  display: block;
  height: 22px;
  width: min(260px, 35vw);
  background: rgba(255, 255, 255, 0.32);
}

.skeleton-nav {
  min-height: 114px;
  display: grid;
  grid-template-columns: 280px 1fr 430px;
  align-items: center;
  gap: 34px;
  padding: 0 max(24px, calc((100vw - 1680px) / 2 + 32px));
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}

.skeleton-logo {
  width: 230px;
  height: 78px;
  background: #e9eff7;
}

.skeleton-links,
.skeleton-actions,
.skeleton-meta,
.skeleton-buttons,
.skeleton-tab-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.skeleton-links span {
  display: block;
  width: 96px;
  height: 24px;
}

.skeleton-actions span {
  display: block;
  width: 170px;
  height: 58px;
  border-radius: 999px;
}

.skeleton-actions span:last-child {
  width: 210px;
  background: #dbeafe;
}

.skeleton-main {
  max-width: 1680px;
  margin: 0 auto;
  padding: 52px 32px 80px;
}

.skeleton-back {
  width: 190px;
  height: 24px;
  margin-bottom: 36px;
}

.skeleton-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.2fr);
  gap: 48px;
  align-items: start;
}

.skeleton-gallery {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 26px;
}

.skeleton-thumbs {
  display: grid;
  gap: 18px;
  align-content: start;
}

.skeleton-thumbs span {
  display: block;
  width: 92px;
  height: 92px;
  border-radius: 14px;
}

.skeleton-product-image {
  min-height: 430px;
  border-radius: 24px;
  background: #edf2f7;
}

.skeleton-copy {
  padding-top: 12px;
}

.skeleton-kicker,
.skeleton-title,
.skeleton-line {
  display: block;
}

.skeleton-kicker {
  width: 160px;
  height: 22px;
  margin-bottom: 28px;
}

.skeleton-title {
  width: min(720px, 100%);
  height: 52px;
  margin-bottom: 14px;
}

.skeleton-title.short {
  width: min(460px, 72%);
  height: 52px;
  margin-bottom: 30px;
}

.skeleton-meta {
  margin-bottom: 32px;
}

.skeleton-meta span {
  width: 220px;
  height: 58px;
  border-radius: 14px;
}

.skeleton-line {
  width: 100%;
  height: 20px;
  margin-bottom: 14px;
}

.skeleton-line.medium {
  width: 76%;
}

.skeleton-price {
  width: min(520px, 90%);
  height: 110px;
  margin-top: 28px;
  border-radius: 18px;
}

.skeleton-buttons {
  margin-top: 28px;
}

.skeleton-buttons span {
  width: 180px;
  height: 58px;
  border-radius: 999px;
}

.skeleton-tabs {
  margin-top: 64px;
}

.skeleton-tab-row span {
  width: 150px;
  height: 28px;
}

.skeleton-panel {
  margin-top: 26px;
  padding: 34px;
  min-height: 220px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.skeleton-panel span {
  display: block;
  height: 20px;
  margin-bottom: 18px;
  background: #e8eef6;
}

.skeleton-panel .medium {
  width: 68%;
}

@media (max-width: 900px) {
  .skeleton-topbar {
    display: none;
  }

  .skeleton-nav {
    min-height: 132px;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 22px;
  }

  .skeleton-logo {
    width: 118px;
    height: 86px;
    border-radius: 999px;
  }

  .skeleton-links {
    display: none;
  }

  .skeleton-actions {
    justify-content: flex-end;
  }

  .skeleton-actions span:first-child {
    display: none;
  }

  .skeleton-actions span:last-child {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .skeleton-main {
    padding: 46px 20px 64px;
  }

  .skeleton-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .skeleton-gallery {
    grid-template-columns: 1fr;
  }

  .skeleton-thumbs {
    order: 2;
    display: flex;
    gap: 12px;
  }

  .skeleton-thumbs span {
    width: 90px;
    height: 70px;
  }

  .skeleton-product-image {
    min-height: 418px;
  }

  .skeleton-title,
  .skeleton-title.short {
    height: 40px;
  }

  .skeleton-meta,
  .skeleton-buttons,
  .skeleton-tab-row {
    flex-wrap: wrap;
  }

  .skeleton-meta span {
    width: min(220px, 100%);
  }
}

.site-shell {
  min-height: 100vh;
  background: var(--template-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--template-header-bg, #ffffff);
  border-bottom: 1px solid var(--template-border);
  backdrop-filter: blur(12px);
}

.site-nav {
  max-width: 1180px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  font-size: 22px;
  color: var(--template-header-text, var(--template-heading));
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--template-border);
  background: #fff;
  object-fit: contain;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 800;
  color: var(--template-header-text, var(--template-heading));
}

/* Navbar position variants */
.site-nav.nav-pos-right { justify-content: space-between !important; }
.site-nav.nav-pos-center { justify-content: center !important; gap: 32px; flex-wrap: nowrap; }
.site-nav.nav-pos-center .nav-links { margin: 0; }
.site-nav.nav-pos-left { flex-direction: row-reverse !important; justify-content: space-between !important; }
.site-nav.nav-pos-below {
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 0;
}
.site-nav.nav-pos-below .brand {
  width: 100%;
  justify-content: center;
  padding-bottom: 10px;
}
.site-nav.nav-pos-below .nav-links {
  width: 100%;
  justify-content: center;
  border-top: 1px solid var(--template-border, #e5eaf1);
  padding-top: 10px;
}
.site-nav.nav-pos-below .menu-button {
  position: absolute;
  right: 16px;
  top: 16px;
}

.nav-links a:hover,
.nav-links a.active { color: var(--template-header-accent, var(--template-color)); }

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown > a svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  top: 100%;
  height: 18px;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 80;
  width: min(360px, calc(100vw - 32px));
  max-height: min(70vh, 520px);
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--template-border, #e5eaf1);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  transition: 0.16s ease;
}

.nav-dropdown-panel strong {
  color: var(--template-header-accent, var(--template-color));
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-dropdown-panel a,
.nav-dropdown-panel span {
  min-width: 0;
  width: 100%;
  display: block;
  padding: 8px 4px;
  font-weight: 700;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
  color: var(--template-header-text, var(--template-heading));
}

.nav-dropdown-panel a:hover {
  color: var(--template-header-accent, var(--template-color));
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel,
.nav-dropdown.open > .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--template-border);
  border-radius: 8px;
  background: #fff;
  color: var(--template-heading);
  font-weight: 900;
}

.section {
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  padding: 54px max(24px, calc((100% - 1280px) / 2));
}

.hero h1,
.hero .hero-subtitle { color: inherit; }

.variant-mquiq .mquiq-benefits-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 72px max(32px, calc((100vw - 1320px) / 2 + 32px));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 44px;
  min-height: min(720px, calc(100vh - 90px));
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0;
  color: var(--template-color);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  line-height: 1.8;
}

.hero h1 {
  margin: 22px 0 0;
  color: var(--template-heading);
  max-width: 760px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero-subtitle {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--template-text);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid var(--template-color);
  background: var(--template-color);
  color: #fff;
  padding: 12px 22px;
  font-weight: 900;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--template-color);
}

.hero-media {
  min-height: 410px;
  border-radius: 22px;
  overflow: hidden;
  background: #e5e7eb;
  border: 1px solid var(--template-border);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

/* Nexus B2B uses a broader, viewport-led hero instead of the narrower
   catalogue container used by the other legacy templates. */
.variant-businesstobusiness .site-nav {
  width: 100%;
  max-width: none;
  min-height: 82px;
  padding-inline: clamp(24px, 4vw, 64px);
}

.variant-businesstobusiness .hero {
  width: 100%;
  max-width: 1480px;
  min-height: min(650px, calc(100vh - 82px));
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(44px, 5vw, 84px);
  padding: clamp(48px, 6vh, 76px) clamp(24px, 4vw, 64px);
}

.variant-businesstobusiness .hero h1 {
  max-width: 700px;
  margin-top: 16px;
  font-size: clamp(48px, 4.5vw, 72px);
  line-height: 0.98;
}

.variant-businesstobusiness .hero-subtitle {
  margin-top: 22px;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.5;
}

.variant-businesstobusiness .hero-media,
.variant-businesstobusiness .hero-media img {
  min-height: 500px;
  max-height: 590px;
}

.variant-businesstobusiness .hero-media {
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.hero-fallback {
  position: relative;
  display: flex;
  min-height: 410px;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, color-mix(in srgb, var(--template-color) 72%, white), transparent 31%),
    linear-gradient(145deg, var(--template-heading), color-mix(in srgb, var(--template-heading) 72%, var(--template-color)));
}

.hero-fallback::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
}

.hero-fallback-mark {
  position: absolute;
  right: 38px;
  top: 24px;
  color: rgba(255,255,255,.12);
  font-size: clamp(110px, 16vw, 220px);
  font-weight: 950;
  letter-spacing: -.12em;
  line-height: 1;
}

.hero-fallback p,
.hero-fallback strong,
.hero-fallback-lines {
  position: relative;
  z-index: 1;
}

.hero-fallback p {
  margin: 0 0 12px;
  color: color-mix(in srgb, var(--template-color) 55%, white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.hero-fallback strong {
  max-width: 480px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
}

.hero-fallback-lines {
  display: grid;
  grid-template-columns: 1fr .65fr .35fr;
  gap: 8px;
  margin-top: 28px;
}

.hero-fallback-lines i {
  height: 5px;
  border-radius: 99px;
  background: var(--template-color);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.section h2 {
  margin: 8px 0 0;
  color: var(--template-heading);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0;
}

.section-lead {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.65;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.content-card,
.product-card,
.faq-item,
.policy-card {
  background: var(--template-surface);
  border: 1px solid var(--template-border);
  border-radius: var(--template-radius);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.content-card,
.policy-card {
  padding: 24px;
}

.content-card h3,
.product-card h3 {
  margin: 8px 0;
  color: var(--template-heading, #0f172a);
  font-size: 21px;
}

.content-card p,
.product-card p,
.policy-card p {
  line-height: 1.65;
  color: #475569;
}

.tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tools input,
.tools button {
  min-height: 42px;
  border: 1px solid var(--template-border);
  border-radius: 8px;
  background: #fff;
  padding: 0 14px;
}

.tools button {
  cursor: pointer;
  font-weight: 800;
}

.tools button.active {
  color: var(--template-color);
  border-color: var(--template-color);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  content-visibility: auto;
  min-height: 500px;
  contain-intrinsic-size: 500px;
}

.product-link {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.product-image {
  height: 260px;
  min-height: 260px;
  background: #fff;
  display: grid;
  place-items: center;
  color: #64748b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}

.product-body {
  flex: 1 1 auto;
  padding: 18px;
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px 18px;
  margin-top: auto;
}

.product-actions strong {
  color: var(--template-heading);
}

.product-action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.product-actions button,
.product-action-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  white-space: nowrap;
  text-align: center;
  font-weight: 900;
  cursor: pointer;
}

.product-actions button {
  border: 1px solid var(--template-color);
  border-radius: 8px;
  background: var(--template-color);
  color: #fff;
  padding: 0 14px;
}

.product-action-buttons a {
  border: 1px solid var(--template-border);
  border-radius: 8px;
  background: #fff;
  color: #111827;
  padding: 0 12px;
}

.product-actions button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.catalog-more-row {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.catalog-more-row button {
  min-height: 48px;
  border: 1px solid var(--template-border);
  border-radius: 999px;
  background: #fff;
  color: var(--template-heading);
  padding: 0 28px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.catalog-more-row button.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.82;
  padding-left: 48px;
}

.catalog-more-row button.loading::before {
  content: "";
  position: absolute;
  left: 22px;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  animation: runtime-spin 0.7s linear infinite;
}

@keyframes runtime-spin {
  to {
    transform: rotate(360deg);
  }
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: #fff;
}

.faq-item button {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 18px;
  text-align: left;
  color: var(--faq-text-color, #111827);
  font-weight: 900;
  cursor: pointer;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 18px 18px;
  line-height: 1.65;
  background: #fff;
  color: var(--faq-text-color, #111827);
}

.faq-item.open p {
  display: block;
}

.faq-item.is-faq-collapsed {
  display: none;
}

.faq-more-row {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.faq-more-row button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: #f4b400;
  color: #111827;
  padding: 0 22px;
  font-weight: 900;
  cursor: pointer;
}

.faq-more-row button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.runtime-section {
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  padding: 72px max(32px, calc((100% - 1280px) / 2));
  background: #fff;
}

.runtime-section:nth-of-type(even) {
  background: #f8fafc;
}

.runtime-section-head {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.runtime-section-head h2 {
  margin: 12px 0 0;
  color: #132033;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.runtime-section-head p:not(.eyebrow) {
  margin: 18px auto 0;
  color: #516173;
  font-size: 16px;
  line-height: 1.62;
}

.runtime-card-grid {
  display: grid;
  gap: 22px;
}

.runtime-card-grid.four {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

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

.runtime-feature-card,
.runtime-process-card,
.runtime-testimonial-card {
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.runtime-feature-card {
  min-height: 260px;
  text-align: center;
}

.runtime-card-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #f4b400;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
}

.runtime-feature-card h3,
.runtime-process-card h3,
.runtime-testimonial-card h3 {
  margin: 0;
  color: #071126;
  font-size: 23px;
  line-height: 1.25;
}

.runtime-feature-card p,
.runtime-process-card p,
.runtime-testimonial-card p {
  margin: 16px 0 0;
  color: #52627a;
  font-size: 16px;
  line-height: 1.75;
}

.runtime-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 18px;
}

.runtime-process-card strong {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 18px;
}

.runtime-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px;
}

.runtime-gallery-card.is-gallery-collapsed {
  display: none !important;
}

@media (max-width: 900px) {
  .runtime-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .runtime-gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

.runtime-gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 20px;
  background: #dbe3ef;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.runtime-gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.runtime-gallery-card:hover img {
  transform: scale(1.05);
}

.runtime-gallery-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 54px 22px 22px;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.86));
}

.runtime-gallery-card h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
}

.runtime-testimonial-card {
  position: relative;
  min-width: 0;
  min-height: 250px;
}

.runtime-testimonials-grid,
.runtime-testimonials-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
  overflow: visible;
  padding: 0;
}

.runtime-testimonials-scroll::-webkit-scrollbar {
  height: 10px;
}

.runtime-testimonials-scroll::-webkit-scrollbar-track {
  background: #e8eef6;
  border-radius: 999px;
}

.runtime-testimonials-scroll::-webkit-scrollbar-thumb {
  background: #a9b7ca;
  border-radius: 999px;
}

.runtime-testimonials-scroll::-webkit-scrollbar-thumb:hover {
  background: #7f8fa5;
}

.runtime-stars {
  margin-bottom: 14px;
  color: #f4b400;
  font-size: 20px;
  letter-spacing: 0.12em;
}

.runtime-testimonial-card span {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-weight: 700;
}

.runtime-policy-page {
  max-width: 1180px;
  background: #f8fafc;
}

.runtime-policy-shell {
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  background: #fff;
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.runtime-policy-shell h1 {
  margin: 12px 0 0;
  color: #132033;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.runtime-policy-subtitle {
  max-width: 820px;
  margin: 18px 0 0;
  color: #516173;
  font-size: 18px;
  line-height: 1.65;
}

.runtime-policy-content {
  margin-top: 32px;
  color: #334155;
  font-size: 16px;
  line-height: 1.78;
}

.runtime-policy-content > *:first-child {
  margin-top: 0;
}

.runtime-policy-content p {
  margin: 0 0 18px;
}

.runtime-policy-content h2,
.runtime-policy-content h3,
.runtime-policy-content h4 {
  margin: 30px 0 12px;
  color: #0f172a;
  line-height: 1.25;
}

.runtime-policy-content h2 {
  font-size: 26px;
}

.runtime-policy-content h3 {
  font-size: 22px;
}

.runtime-policy-content ul,
.runtime-policy-content ol {
  margin: 0 0 20px 22px;
  padding: 0;
}

.runtime-policy-content li {
  margin: 8px 0;
}

.runtime-area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.runtime-area-list span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid #dbe3ef;
  border-radius: 999px;
  background: #fff;
  color: #263548;
  padding: 10px 20px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.contact-page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 64px 28px 88px;
  color: #2b2f36;
  box-sizing: border-box;
}

.contact-page-inner {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
}

.contact-page .section-lead {
  max-width: 640px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 32px 0 0;
  align-items: stretch;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 168px;
  margin: 0;
}

.contact-info-card > div {
  min-width: 0;
  flex: 1;
}

.contact-info-icon {
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--template-color, #f4b400) 16%, #fff);
  color: var(--template-color, #f4b400);
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.contact-info-card p {
  margin: 0;
  overflow-wrap: anywhere;
  line-height: 1.55;
}

.contact-info-card a {
  color: inherit;
  text-decoration: none;
}

.contact-info-card a:hover {
  color: var(--template-color, #f4b400);
  text-decoration: underline;
}

.auth-page {
  min-height: 560px;
  display: grid;
  place-items: start center;
  background: #f8fafc;
}

.auth-card {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.auth-card label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: #0f172a;
  font-weight: 800;
}

.auth-card input {
  min-height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 0 14px;
  color: #0f172a;
  font: inherit;
}

.auth-card button,
.auth-card .btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  border: 0;
  border-radius: 999px;
  background: #f4b400;
  padding: 0 24px;
  color: #111827;
  font-weight: 950;
  cursor: pointer;
}

.auth-password-field {
  position: relative;
  display: block;
}

.auth-password-field input {
  width: 100%;
  padding-right: 64px;
}

.auth-password-field button {
  position: absolute;
  top: 50%;
  right: 12px;
  min-height: 0;
  margin: 0;
  transform: translateY(-50%);
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 4px;
  color: #475569;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.auth-note {
  margin: 16px 0 0;
  color: #64748b;
  font-size: 14px;
}

.auth-note a {
  color: #111827;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-message {
  min-height: 20px;
  margin: 12px 0 0;
  color: #dc2626;
  font-size: 14px;
  font-weight: 700;
}

.auth-profile-summary {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.auth-profile-summary div {
  display: grid;
  gap: 6px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #f8fafc;
  padding: 14px 16px;
}

.auth-profile-summary span {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-profile-summary strong {
  color: #0f172a;
  font-size: 18px;
}

.auth-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 14px;
}

.auth-profile-actions button,
.auth-form-actions button {
  min-height: 42px;
  margin: 0;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
}

.auth-profile-actions .auth-logout-button {
  border: 1px solid #fecaca;
  background: #fff;
  color: #dc2626;
}
.auth-message.success {
  color: #15803d;
}

.auth-profile-form {
  margin-top: 18px;
  border: 1px solid #bfdbfe;
  border-radius: 18px;
  background: #eff6ff;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.12);
}

.auth-profile-dashboard {
  width: min(980px, 100%);
}

.auth-profile-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.auth-profile-head .auth-profile-actions {
  margin-top: 0;
}

.auth-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 22px;
}

.auth-dashboard-grid button {
  display: grid;
  align-content: center;
  min-height: 88px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
  color: #0f172a;
  cursor: pointer;
  padding: 16px;
  text-align: center;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.auth-profile-tabs button.active,
.auth-profile-tabs button[aria-selected="true"] {
  border-color: #0b5a96;
  background: #eff6ff;
  box-shadow: 0 14px 30px rgba(11, 90, 150, 0.13);
}

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

.auth-dashboard-grid strong {
  display: block;
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
}

.auth-dashboard-grid span {
  display: block;
  margin-top: 10px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-profile-sections {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.auth-profile-sections section {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  padding: 22px 24px;
}

.auth-profile-sections section[hidden] {
  display: none;
}

.auth-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.auth-section-title h3 {
  margin: 0;
  color: #0f172a;
  font-size: 18px;
}

.auth-section-title a,
.auth-section-title span {
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.auth-list {
  display: grid;
  gap: 10px;
}

.auth-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
  padding: 14px 16px;
}

.auth-list-item strong,
.auth-list-item b {
  color: #0f172a;
}

.auth-list-item span {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 13px;
}

.auth-empty {
  margin: 0;
  color: #64748b;
}

.auth-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.auth-form-actions button[data-profile-cancel] {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
}

.auth-cart-card {
  max-width: 720px;
}

.runtime-cart-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.runtime-cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #f8fafc;
  padding: 12px;
}

.runtime-cart-item img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
}

.runtime-cart-item strong {
  display: block;
  color: #0f172a;
  font-size: 16px;
}

.runtime-cart-item span {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.runtime-cart-remove {
  min-height: 0;
  margin: 8px 0 0;
  border: 0;
  background: transparent;
  padding: 0;
  color: #dc2626;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.runtime-cart-remove:disabled {
  cursor: wait;
  opacity: 0.6;
}

.runtime-cart-item b,
.runtime-cart-total {
  color: #0f172a;
  font-weight: 950;
}

.runtime-cart-total {
  text-align: right;
  font-size: 20px;
}

.runtime-cart-checkout {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.runtime-cart-buy {
  min-width: 150px;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--template-accent, #fbbf24);
  color: #0f172a;
  padding: 12px 24px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.runtime-cart-buy:disabled {
  cursor: wait;
  opacity: 0.65;
}

.runtime-cart-buy.loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.runtime-cart-buy.loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(15, 23, 42, 0.18);
  border-top-color: #0f172a;
  border-radius: 50%;
  animation: product-navigation-spin 0.72s linear infinite;
}

.runtime-checkout-dialog {
  width: min(620px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  border: 0;
  border-radius: 24px;
  padding: 0;
  color: #0f172a;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.3);
}

.runtime-checkout-open { overflow: hidden; }
.runtime-checkout-page {
  position: fixed;
  inset: 0;
  z-index: 100000;
  overflow: auto;
  background: #f3f6fb;
  color: #111827;
  font-family: Inter, Arial, sans-serif;
}
.runtime-checkout-top {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 12px max(24px, calc((100vw - 1280px) / 2));
  background: #0f1f44;
  color: white;
  box-shadow: 0 8px 28px rgba(15,31,68,.18);
}
.runtime-checkout-top button { border: 0; background: rgba(255,255,255,.1); color: white; width: 42px; height: 42px; border-radius: 10px; font-size: 22px; cursor: pointer; }
.runtime-checkout-top div { display: grid; gap: 2px; }
.runtime-checkout-top b { font-size: 18px; }
.runtime-checkout-top small { color: #bfdbfe; }
.runtime-checkout-top > span { margin-left: auto; color: #dbeafe; font-size: 13px; }
.runtime-checkout-layout { display: grid; grid-template-columns: minmax(0,1fr) 390px; gap: 28px; width: min(1280px, calc(100% - 40px)); margin: 32px auto 60px; align-items: start; }
.runtime-checkout-main { min-width: 0; }
.runtime-checkout-steps { display: grid; grid-template-columns: repeat(3,1fr); margin-bottom: 20px; border-radius: 14px; overflow: hidden; background: #e5eaf3; color: #64748b; font-weight: 800; }
.runtime-checkout-steps span { padding: 14px; text-align: center; }
.runtime-checkout-steps .active { background: #2563eb; color: white; }
.runtime-checkout-card,.runtime-checkout-summary { border: 1px solid #e1e7f0; border-radius: 18px; background: white; box-shadow: 0 16px 45px rgba(15,23,42,.08); }
.runtime-checkout-card { padding: 26px; }
.runtime-checkout-title { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.runtime-checkout-title > span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: #e8f0ff; color: #2563eb; font-weight: 900; }
.runtime-checkout-title h2 { margin: 0; font-size: 24px; }
.runtime-checkout-title p { margin: 5px 0 0; color: #64748b; }
.runtime-checkout-summary { position: sticky; top: 96px; padding: 24px; }
.runtime-checkout-summary h2 { margin: 0 0 20px; font-size: 22px; }
.runtime-checkout-product { display: grid; grid-template-columns: 58px minmax(0,1fr) auto; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid #edf0f5; }
.runtime-checkout-product img { width: 58px; height: 58px; border-radius: 10px; object-fit: cover; background: #eef2f7; }
.runtime-checkout-product div { display: grid; gap: 5px; }
.runtime-checkout-product small,.runtime-checkout-summary > p { color: #64748b; }
.runtime-checkout-total { display: flex; justify-content: space-between; align-items: center; padding: 22px 0 10px; font-size: 20px; }
.runtime-checkout-total strong { font-size: 24px; }
.runtime-checkout-price-row { display:flex; justify-content:space-between; align-items:center; gap:12px; padding:8px 0; color:#64748b; font:600 14px/1.4 Arial,sans-serif; }
.runtime-checkout-price-row[hidden] { display:none; }
.runtime-checkout-original { text-decoration:line-through; color:#94a3b8; font-weight:700; }
.runtime-checkout-discount { color:#166534; font-weight:800; }
.runtime-checkout-total strong.runtime-checkout-price-now { color:#166534; }
.runtime-pay-icon { display: grid!important; place-items: center; width: 42px; height: 42px; flex: 0 0 auto; border-radius: 10px; background: #2563eb; color: white; font-size: 22px; font-weight: 900; }
.runtime-checkout-online:disabled { cursor: wait; opacity: .65; }
.runtime-checkout-qr{display:grid;grid-template-columns:230px minmax(0,1fr);gap:34px;align-items:center;padding:28px;border:1px solid #d9e2f1;border-radius:18px;background:#f8fbff}
.runtime-checkout-qr-image{display:grid;place-items:center;padding:14px;border-radius:16px;background:#fff;box-shadow:0 8px 28px rgba(15,23,42,.09)}
.runtime-checkout-qr-image img{display:block;width:100%;max-width:200px;aspect-ratio:1;object-fit:contain}
.runtime-checkout-qr h3{margin:12px 0 8px;font:800 30px/1.1 Arial,sans-serif}.runtime-checkout-qr p{margin:0 0 8px;color:#334155;font:17px/1.5 Arial,sans-serif}.runtime-checkout-qr small{color:#64748b;font:14px/1.45 Arial,sans-serif}
.runtime-checkout-qr-badge{display:inline-flex;padding:7px 11px;border-radius:100px;background:#dcfce7;color:#166534;font:800 11px/1 Arial,sans-serif;letter-spacing:.12em}
.runtime-checkout-payment [data-confirm-qr-payment]{width:100%;margin-top:20px}
.runtime-checkout-qr-missing{padding:24px;border:1px solid #fecaca;border-radius:14px;background:#fff1f2;color:#991b1b}.runtime-checkout-qr-missing p{margin:6px 0 0}
@media(max-width:700px){.runtime-checkout-qr{grid-template-columns:1fr;text-align:center}.runtime-checkout-qr-image{max-width:240px;margin:auto}}
.runtime-thank-you-page { position: fixed; inset: 0; z-index: 100001; display: grid; place-items: center; overflow: auto; padding: 24px; background: linear-gradient(145deg,#eef4ff,#f8fafc); color: #111827; font-family: Inter,Arial,sans-serif; }
.runtime-thank-you-card { width: min(620px,100%); border: 1px solid #dfe7f3; border-radius: 24px; background: white; padding: 48px; text-align: center; box-shadow: 0 28px 80px rgba(15,23,42,.14); }
.runtime-success-check { display: grid; place-items: center; width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 999px; background: #dcfce7; color: #16a34a; font-size: 40px; font-weight: 900; }
.runtime-thank-you-card > p:first-of-type { color: #16a34a; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.runtime-thank-you-card h1 { margin: 8px 0 18px; font-size: clamp(30px,5vw,44px); }
.runtime-thank-you-card > p { color: #64748b; line-height: 1.7; }
.runtime-thank-you-details { display: grid; gap: 10px; margin: 24px 0; border-radius: 14px; background: #f8fafc; padding: 18px; text-align: left; }
.runtime-thank-you-details span { display: flex; justify-content: space-between; gap: 16px; }
.runtime-thank-you-card > div:last-child { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.runtime-thank-you-card button { border: 0; border-radius: 12px; background: #2563eb; color: white; padding: 14px 22px; font: inherit; font-weight: 850; cursor: pointer; }
.runtime-thank-you-card button.secondary { background: #e8eef8; color: #1e3a6d; }
.runtime-payment-failed-page { position: fixed; inset: 0; z-index: 100001; display: grid; place-items: center; overflow: auto; padding: 24px; background: linear-gradient(145deg,#fff1f2,#fff7ed); color: #111827; font-family: Inter,Arial,sans-serif; }
.runtime-payment-failed-card { width: min(620px,100%); border: 1px solid #fecdd3; border-radius: 24px; background: white; padding: 48px; text-align: center; box-shadow: 0 28px 80px rgba(15,23,42,.14); }
.runtime-payment-failed-icon { display: grid; place-items: center; width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 999px; background: #fee2e2; color: #dc2626; font-size: 40px; font-weight: 900; }
.runtime-payment-failed-card > p:first-of-type { color: #dc2626; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.runtime-payment-failed-card h1 { margin: 8px 0 18px; font-size: clamp(28px,5vw,40px); }
.runtime-payment-failed-card > p { color: #64748b; line-height: 1.7; }
.runtime-payment-failed-details { display: grid; gap: 10px; margin: 24px 0; border-radius: 14px; background: #fff7ed; padding: 18px; text-align: left; }
.runtime-payment-failed-details span { display: flex; justify-content: space-between; gap: 16px; }
.runtime-payment-failed-card > div:last-child { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.runtime-payment-failed-card button { border: 0; border-radius: 12px; background: #2563eb; color: white; padding: 14px 22px; font: inherit; font-weight: 850; cursor: pointer; }
.runtime-payment-failed-card button.secondary { background: #e8eef8; color: #1e3a6d; }
.runtime-checkout-message.error { color: #dc2626; font-weight: 700; }

.runtime-checkout-dialog::backdrop {
  background: rgba(15, 23, 42, 0.55);
}
.runtime-checkout-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 26px 18px;
  border-bottom: 1px solid #e2e8f0;
}
.runtime-checkout-head span {
  color: #64748b;
  font-weight: 800;
}
.runtime-checkout-head h2,
.runtime-checkout-payment h2 {
  margin: 4px 0 0;
  font-size: 26px;
}
.runtime-checkout-head button {
  border: 0;
  background: transparent;
  color: #64748b;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.runtime-checkout-form,
.runtime-checkout-payment {
  padding: 24px 26px 28px;
}
.runtime-checkout-addresses {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.runtime-checkout-address,
.runtime-checkout-payment > label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  padding: 14px;
  cursor: pointer;
}
.runtime-checkout-payment > label {
  margin-top: 12px;
}
.runtime-checkout-payment label span {
  display: grid;
  gap: 3px;
}
.runtime-checkout-payment label small {
  color: #64748b;
}
.runtime-checkout-online {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  background: #fff;
  color: #0f172a;
  padding: 16px;
  text-align: left;
  cursor: pointer;
}
.runtime-checkout-online span {
  display: grid;
  gap: 4px;
}
.runtime-checkout-online b {
  font-size: 17px;
}
.runtime-checkout-online small {
  color: #64748b;
  font-size: 14px;
}
.runtime-checkout-online strong {
  color: var(--template-primary, #15569a);
  font-size: 24px;
}
.runtime-dummy-qr {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 18px;
  border-radius: 18px;
  background: #f8fafc;
  padding: 20px;
  text-align: center;
}
.runtime-dummy-qr[hidden] {
  display: none;
}
.runtime-dummy-qr img {
  width: min(230px, 70vw);
  aspect-ratio: 1;
  border: 10px solid #fff;
  border-radius: 12px;
}
.runtime-dummy-qr b {
  font-size: 18px;
}
.runtime-dummy-qr span {
  color: #64748b;
  font-size: 13px;
}
.runtime-checkout-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.runtime-checkout-fields[hidden] {
  display: none;
}
.runtime-checkout-fields .wide {
  grid-column: 1 / -1;
}
.runtime-checkout-fields input {
  min-width: 0;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 14px;
  font: inherit;
}
.runtime-checkout-link {
  border: 0;
  background: transparent;
  color: var(--template-primary, #15569a);
  padding: 4px 0;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.runtime-checkout-primary {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--template-accent, #fbbf24);
  color: #0f172a;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}
.runtime-checkout-primary:disabled {
  cursor: wait;
  opacity: 0.65;
}
.runtime-checkout-message {
  min-height: 20px;
  margin: 12px 0 0;
  color: #dc2626;
  font-weight: 750;
}

@media (max-width: 520px) {
  .runtime-checkout-fields {
    grid-template-columns: 1fr;
  }
  .runtime-checkout-fields .wide {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .runtime-checkout-layout { grid-template-columns: 1fr; width: min(100% - 24px,720px); margin-top: 18px; }
  .runtime-checkout-summary { position: static; order: -1; }
  .runtime-checkout-steps { font-size: 12px; }
  .runtime-checkout-top > span { display: none; }
  .runtime-thank-you-card { padding: 32px 22px; }
}

@media (max-width: 640px) {
  .runtime-cart-checkout {
    align-items: stretch;
    flex-direction: column;
  }

  .runtime-cart-total {
    text-align: left;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 24px;
  margin-top: 32px;
  align-items: stretch;
}

.contact-form-card,
.contact-map-card {
  border: 1px solid var(--template-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.contact-form-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
}

.contact-form-card h3,
.contact-form-card > p,
.contact-form-card textarea,
.contact-form-card button,
.contact-form-card input[name="phone"] {
  grid-column: 1 / -1;
}

.contact-form-card h3 {
  margin: 0;
  color: var(--template-heading);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
}

.contact-form-card p {
  margin: -8px 0 4px;
  color: var(--template-text);
  line-height: 1.65;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid var(--template-border);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.78);
  color: var(--template-text);
  padding: 16px;
  font: inherit;
  outline: none;
}

.contact-form-card textarea {
  min-height: 156px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: var(--template-color);
  box-shadow: 0 0 0 3px
    color-mix(in srgb, var(--template-color) 16%, transparent);
}

.contact-form-card button {
  min-height: 58px;
  border: 0;
  border-radius: 14px;
  background: var(--template-color);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.variant-mquiq .contact-form-card button {
  background: #f4b400;
  color: #111827;
}

.contact-map-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  height: auto;
  align-self: stretch;
  background: #e8eef3;
}

.contact-map-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  background:
    radial-gradient(circle at 28% 24%, #f8fbff 0%, #d7e4ef 48%, #c5d3e0 100%);
  color: #334155;
}

.contact-map-fallback span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.contact-map-fallback svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-map-fallback p {
  margin: 0;
  max-width: 360px;
  font-size: 15px;
  line-height: 1.55;
}

.contact-map-card iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  background: transparent;
}

.contact-map-open {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

@media (max-width: 1100px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    min-height: 0;
  }
}

.product-detail-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 28px 72px;
  background: linear-gradient(115deg, #f8f6ef 0%, #fffdf7 50%, #f6f2e7 100%);
}

.detail-back {
  display: inline-flex;
  margin-bottom: 26px;
  color: #0f172a;
  font-weight: 900;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.22fr);
  gap: 36px;
  align-items: start;
}

.detail-media,
.detail-copy {
  border: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.detail-media {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.detail-sticky {
  position: sticky;
  top: 120px;
}

.detail-media-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.detail-main-wrap {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 22px;
  background: #fff;
  padding: 22px;
}

.detail-main-img {
  width: 100%;
  height: 580px;
  border-radius: 16px;
  background: #fff;
  object-fit: contain;
}

.detail-main-img.empty {
  display: grid;
  place-items: center;
  color: #64748b;
}

.detail-thumbs {
  display: grid;
  gap: 10px;
}

.detail-thumbs.vertical {
  grid-template-columns: 1fr;
  position: sticky;
  top: 120px;
}

.detail-thumbs button {
  width: 100%;
  height: 82px;
  border: 2px solid #dbe3ef;
  border-radius: 14px;
  background: #fff;
  padding: 4px;
  cursor: pointer;
}

.detail-thumbs button.active {
  border-color: #645cff;
}

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

.detail-stock {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 2;
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 18px;
  color: #fff;
  font-weight: 900;
}

.detail-stock.in {
  background: #007a4d;
}

.detail-stock.out {
  background: #ef4444;
}

.detail-copy {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.detail-copy h1 {
  margin: 16px 0 18px;
  color: #20242d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.45vw, 3.15rem);
  line-height: 1.05;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.detail-copy p {
  color: #29384c;
  font-size: 15px;
  line-height: 1.58;
}

.detail-subtitle {
  margin: 0 0 14px;
}

.detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 22px;
}

.detail-rating,
.detail-sku {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  background: rgba(244, 180, 0, 0.12);
  color: #78350f;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 800;
}

.detail-sku {
  border-radius: 8px;
  background: rgba(241, 245, 249, 0.8);
  color: #1e3a5f;
}

.detail-price {
  margin-top: 8px;
  color: #5b4bff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 950;
}

.detail-price-box {
  margin-top: 34px;
  border: 1px solid #d8dee9;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  padding: 26px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
}

.detail-price-box > span {
  color: #64748b;
  font-size: 17px;
}

.detail-price-box del {
  margin-left: 14px;
  color: #94a3b8;
}

.detail-discount {
  display: inline-flex;
  margin-left: 12px;
  border-radius: 999px;
  background: #f43f5e;
  color: #fff;
  padding: 6px 12px;
}

.detail-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.detail-benefits span {
  border-radius: 12px;
  background: #eef3f8;
  color: #174ea6;
  padding: 13px 16px;
  font-weight: 700;
}

.detail-option-row {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 28px;
  margin-top: 32px;
}

.detail-option-row h2 {
  margin: 0 0 12px;
  color: #071126;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.detail-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-variants button,
.detail-quantity button,
.detail-quantity input {
  min-height: 48px;
  border: 1px solid #d8dee9;
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  padding: 0 14px;
  font-weight: 800;
}

.detail-variants button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: min(270px, 100%);
  min-height: 76px;
  border-color: #cbd5e1;
  border-radius: 16px;
  background: #fff;
  padding: 10px 42px 10px 18px;
  text-align: left;
}

.detail-variants button img {
  width: 58px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 10px;
  object-fit: cover;
  background: #f1f5f9;
}

.detail-variants button span {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #071126;
}

.detail-variants button b {
  position: absolute;
  top: -9px;
  right: -9px;
  display: none;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #635bff;
  color: #fff;
  font-size: 15px;
  line-height: 1;
}

.detail-variants button.active {
  border-color: #635bff;
  border-width: 2px;
  background: #eef2ff;
  box-shadow: 0 14px 30px rgba(99, 91, 255, 0.16);
}

.detail-variants button.active b {
  display: inline-flex;
}

.detail-quantity {
  display: flex;
  gap: 8px;
}

.detail-quantity input {
  width: 76px;
  text-align: center;
}

.detail-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
  border: 1px solid #d8dee9;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 20px;
}

.detail-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border: 1px solid #e5a800;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffc21c 0%, #f4b400 100%);
  color: #111827;
  padding: 0 30px;
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(244, 180, 0, 0.2);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.detail-add::after {
  content: "\2192";
  font-size: 20px;
  line-height: 1;
  transition: transform 0.18s ease;
}

.detail-add:hover {
  filter: brightness(1.02);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(244, 180, 0, 0.3);
}

.detail-add:hover::after {
  transform: translateX(3px);
}

.detail-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  padding: 0 30px;
  font-weight: 950;
  line-height: 1.2;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.detail-buy:hover:not(:disabled) {
  border-color: #94a3b8;
  background: #f8fafc;
  transform: translateY(-2px);
}

.detail-add:focus-visible,
.detail-buy:focus-visible {
  outline: 3px solid rgba(79, 70, 229, 0.22);
  outline-offset: 3px;
}

.detail-add:disabled,
.detail-buy:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.detail-tabs,
.detail-related {
  margin-top: 48px;
}

.detail-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-bottom: 1px solid #dbe3ef;
}

.detail-tab-nav button {
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #64748b;
  padding: 0 0 14px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.detail-tab-nav button.active {
  border-color: #071126;
  color: #071126;
}

.detail-tab-panel {
  display: none;
  margin-top: 24px;
  border: 1px solid #dbe3ef;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  padding: 24px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.05);
}

.detail-tab-panel.active {
  display: block;
}

.detail-rich {
  max-width: 980px;
  color: #243247;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.7;
}

.detail-rich h2 {
  margin: 22px 0 10px;
  color: #071126;
  font-family: inherit;
  font-size: 24px;
  line-height: 1.25;
}

.detail-rich h2:first-child {
  margin-top: 0;
}

.detail-related h2 {
  margin: 0 0 22px;
  color: #071126;
  font-family: inherit;
  font-size: 30px;
  line-height: 1.16;
}

.detail-rich p {
  margin: 12px 0;
}

.detail-rich ul {
  margin: 12px 0;
  padding-left: 22px;
}

.detail-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-spec-grid div,
.detail-faq-list article,
.detail-review,
.detail-review-empty {
  border-radius: 14px;
  background: #f8fafc;
  padding: 18px;
}

.detail-spec-grid span {
  display: block;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-spec-grid strong {
  display: block;
  margin-top: 6px;
  color: #071126;
  font-size: 18px;
}

.detail-faq-list {
  display: grid;
  gap: 14px;
}

.detail-faq-list h3,
.detail-review h3,
.detail-review-empty h3 {
  margin: 0;
  color: #071126;
}

.detail-faq-list p,
.detail-review p,
.detail-review-empty p {
  color: #475569;
  line-height: 1.65;
}

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

.detail-related-card {
  overflow: hidden;
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  background: #fff;
}

.detail-related-card img {
  width: 100%;
  height: 230px;
  background: #f8fafc;
  object-fit: contain;
  padding: 18px;
}

.detail-related-card a {
  display: block;
}

.detail-related-card p,
.detail-related-card h3,
.detail-related-card strong {
  display: block;
  margin-left: 18px;
  margin-right: 18px;
}

.detail-related-card p {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.detail-related-card h3 {
  color: #071126;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.detail-related-card strong {
  margin-bottom: 22px;
  color: #5b4bff;
  font-size: 22px;
}

.site-footer {
  margin-top: 40px;
  background: var(--template-footer-bg, #111827);
  color: var(--template-footer-text, #e5e7eb);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 26px;
}

.footer-inner h2,
.footer-inner h3 {
  color: var(--template-footer-text, #fff);
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 20px 24px;
}

.footer-policy-links a { color: inherit; text-decoration: none; }
.footer-policy-links a:hover { text-decoration: underline; }

.mquiq-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, #111827 0%, #1e293b 58%, #182f35 100%);
  color: #fff;
}

.mquiq-footer svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mquiq-footer-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 70px 38px 48px;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 1fr;
  gap: 46px;
}

.mquiq-footer-brand img {
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: #fff;
  object-fit: contain;
  padding: 16px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.mquiq-footer h2,
.mquiq-footer h3 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.mquiq-footer-brand h2 {
  margin-top: 26px;
  font-size: 24px;
}

.mquiq-footer-brand p,
.mquiq-footer-col p,
.mquiq-footer li {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.65;
}

.mquiq-footer-points,
.mquiq-footer-col ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.mquiq-footer-points li,
.mquiq-footer-col li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.mquiq-footer-points li::before,
.mquiq-footer-col li a::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 3px solid #f4b400;
  border-right: 3px solid #f4b400;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.mquiq-footer-col h3 {
  position: relative;
  padding-bottom: 18px;
  font-size: 32px;
}

.mquiq-footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: #f4b400;
}

.mquiq-footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.mquiq-footer-contact svg {
  color: #fff;
}

.mquiq-footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.mquiq-footer-socials a {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.mquiq-footer-bottom {
  max-width: 1500px;
  margin: 0 auto;
  padding: 18px 38px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.mquiq-footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 200;
  width: min(390px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
  color: #374151;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(28px, -10px, 0) scale(0.98);
  visibility: hidden;
  transition:
    opacity 0.24s ease,
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0.3s;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  visibility: visible;
}

.toast-content {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 20px 18px 22px;
}

.toast-message {
  color: #374151;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.toast-close {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #9ca3af;
  background: transparent;
  cursor: pointer;
  font-size: 29px;
  font-weight: 400;
  line-height: 1;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.toast-close:hover {
  color: #374151;
  background: #f3f4f6;
}

.toast-progress {
  display: block;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    #22c55e 0%,
    #22c55e 20%,
    #0ea5e9 42%,
    #2563eb 63%,
    #8b5cf6 82%,
    #f43f5e 100%
  );
  transform-origin: left center;
}

.toast.show .toast-progress {
  animation: toastProgress 4.5s linear forwards;
}

.toast[data-toast-type="warning"] .toast-message {
  color: #9a3412;
}

@keyframes toastProgress {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

@media (max-width: 520px) {
  .toast {
    top: 12px;
    right: 12px;
    width: calc(100vw - 24px);
  }

  .toast-content {
    min-height: 82px;
    padding: 16px;
  }
}

.variant-poupqz {
  --template-color: #0b74c6;
  --template-muted: #f3f4f6;
  --template-radius: 10px;
}

.variant-oragze {
  --template-color: #6dbf4b;
  --template-accent: #f7d868;
  --template-muted: #f1f2ef;
  --template-radius: 8px;
}

/* --------------------------------------------------------------------------
   Three intentionally different catalogue experiences. These selectors only
   change presentation; the shared editable paths and section bindings remain
   untouched for the visual editor.
   -------------------------------------------------------------------------- */

/* Nexus B2B — premium dark editorial / enterprise consulting. */
.variant-businesstobusiness {
  --template-color: #7c5cff;
  --template-accent: #c5ff4a;
  --template-background: #080b12;
  --template-surface: #121722;
  --template-heading: #f6f7fb;
  --template-text: #aab3c4;
  --template-border: #293142;
  background: #080b12;
}
.variant-businesstobusiness .site-header { background: rgba(8,11,18,.9); border-color: #262d3c; backdrop-filter: blur(20px); }
.variant-businesstobusiness .site-nav { color: #f6f7fb; }
.variant-businesstobusiness .brand { font-size: 24px; letter-spacing: -.04em; }
.variant-businesstobusiness [data-links] a { color: #aab3c4; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.variant-businesstobusiness [data-links] a:hover { color: #c5ff4a; }
.variant-businesstobusiness .hero { position: relative; overflow: hidden; background: #080b12!important; color: #f6f7fb!important; border-bottom: 1px solid #293142; }
.variant-businesstobusiness .hero::before { content:"NEXUS / 01"; position:absolute; left:64px; top:34px; color:#697386; font:700 11px/1 Arial; letter-spacing:.22em; }
.variant-businesstobusiness .hero-copy { position: relative; z-index: 1; align-self: end; padding-bottom: 34px; }
.variant-businesstobusiness .hero .eyebrow { color:#c5ff4a; }
.variant-businesstobusiness .hero h1 { color:#f6f7fb; font-weight:650; letter-spacing:-.065em; }
.variant-businesstobusiness .hero-subtitle { color:#aab3c4; max-width:580px; }
.variant-businesstobusiness .hero-media { border:0; border-radius:2px; transform:translateY(24px); box-shadow:none; }
.variant-businesstobusiness .hero-media::after { content:"Enterprise systems / Strategy / Scale"; position:absolute; left:0; right:0; bottom:0; padding:18px 22px; background:rgba(8,11,18,.82); color:#fff; font:700 11px/1 Arial; letter-spacing:.16em; text-transform:uppercase; }
.variant-businesstobusiness .btn { border-radius:2px; background:#c5ff4a; border-color:#c5ff4a; color:#080b12; text-transform:uppercase; letter-spacing:.1em; font-size:12px; }
.variant-businesstobusiness .btn.secondary { background:transparent; color:#f6f7fb; border-color:#556078; }
.variant-businesstobusiness .section { width:100%; max-width:none; box-sizing:border-box; padding:110px max(40px, calc((100% - 1280px) / 2)); background:#080b12; color:#aab3c4; border-bottom:1px solid #222938; }
.variant-businesstobusiness .section-head { align-items:end; border-bottom:1px solid #353d4d; padding-bottom:30px; margin-bottom:44px; }
.variant-businesstobusiness .section h2 { color:#f6f7fb; font-size:clamp(42px,5vw,72px); font-weight:600; letter-spacing:-.055em; }
.variant-businesstobusiness .cards-grid { grid-template-columns:repeat(2,1fr); gap:1px; background:#303748; border:1px solid #303748; }
.variant-businesstobusiness .content-card { border:0; border-radius:0; background:var(--template-surface, #111620); padding:42px; min-height:260px; }
.variant-businesstobusiness .content-card h3 { color:#f6f7fb; font-size:28px; }
.variant-businesstobusiness .products-grid { grid-template-columns:repeat(2,1fr); gap:30px; }
.variant-businesstobusiness .product-card { border-radius:2px; border-color:#293142; background:#111620; color:#aab3c4; }
.variant-businesstobusiness .product-card h3 { color:#f6f7fb; }
.variant-businesstobusiness .faq-item,
.variant-businesstobusiness .faq-item button,
.variant-businesstobusiness .faq-item p,
.variant-b2bn .faq-item,
.variant-b2bn .faq-item button,
.variant-b2bn .faq-item p {
  background: #fff !important;
  color: var(--faq-text-color, #111827) !important;
}

/* Hydronex B2B — technical infrastructure / engineering dashboard. */
.variant-b2bn {
  --template-color:#00d6a3;
  --template-accent:#8effda;
  --template-background:#061f24;
  --template-surface:#0b3035;
  --template-heading:#e9fffa;
  --template-text:#9bc4bd;
  --template-border:#225158;
  background:#061f24;
}
.variant-b2bn .site-header { background:#08262b; border-bottom:1px solid #245158; }
.variant-b2bn .site-nav { max-width:none; min-height:92px; padding:0 4vw; color:#e9fffa; }
.variant-b2bn .brand { display:flex; align-items:center; gap:12px; font-family:monospace; letter-spacing:.04em; }
.variant-b2bn .brand::before { content:"H₂"; display:grid; place-items:center; width:42px; height:42px; border:1px solid #00d6a3; color:#00d6a3; }
.variant-b2bn [data-links] a { color:#b0d5ce; font-family:monospace; text-transform:uppercase; font-size:12px; letter-spacing:.1em; }
.variant-b2bn .hero { width:100%; max-width:none; min-height:680px; padding:70px 4vw; grid-template-columns:1.15fr .85fr; background:linear-gradient(115deg,#061f24 0 58%,#0c3439 58%)!important; color:#e9fffa!important; border-bottom:1px solid #225158; }
.variant-b2bn .hero-copy { max-width:850px; }
.variant-b2bn .hero .eyebrow { display:inline-flex; border:1px solid #00d6a3; padding:8px 12px; color:#00d6a3; font-family:monospace; }
.variant-b2bn .hero h1 { color:#e9fffa; font-family:Arial,sans-serif; font-size:clamp(54px,7vw,106px); line-height:.88; letter-spacing:-.07em; text-transform:uppercase; }
.variant-b2bn .hero-subtitle { color:#9bc4bd; max-width:660px; font-family:monospace; font-size:16px; }
.variant-b2bn .hero-media { position:relative; border:1px solid #2a5f65; border-radius:0; min-height:520px; clip-path:polygon(12% 0,100% 0,100% 88%,88% 100%,0 100%,0 12%); }
.variant-b2bn .hero-media::before { content:"SYSTEM ONLINE  •  99.8% UPTIME"; position:absolute; z-index:2; top:18px; left:18px; padding:8px 10px; background:#061f24; color:#00d6a3; font:700 10px/1 monospace; letter-spacing:.08em; }
.variant-b2bn .btn { border-radius:0; background:#00d6a3; border-color:#00d6a3; color:#042126; font-family:monospace; text-transform:uppercase; }
.variant-b2bn .btn.secondary { background:transparent; color:#8effda; }
.variant-b2bn .section { width:100%; max-width:none; padding:90px 4vw; background:#061f24; color:#9bc4bd; border-bottom:1px solid #225158; }
.variant-b2bn .section-head { padding:0 0 26px 20px; border-left:4px solid #00d6a3; border-bottom:1px dashed #2a5f65; }
.variant-b2bn .section h2 { color:#e9fffa; font-family:Arial,sans-serif; text-transform:uppercase; font-size:clamp(38px,4vw,64px); letter-spacing:-.045em; }
.variant-b2bn .cards-grid { grid-template-columns:repeat(3,1fr); gap:18px; }
.variant-b2bn .content-card { border:1px solid #2a5f65; border-radius:0; background:var(--template-surface, #0b3035); padding:30px; box-shadow:inset 3px 0 #00d6a3; }
.variant-b2bn .content-card h3 { color:#e9fffa; font-family:monospace; }
.variant-b2bn .products-grid { grid-template-columns:repeat(3,1fr); gap:16px; }
.variant-b2bn .product-card { border-radius:0; border-color:#2a5f65; background:#0b3035; color:#9bc4bd; }
.variant-b2bn .product-image { filter:saturate(.75) contrast(1.08); }
.variant-b2bn .product-card h3 { color:#e9fffa; font-family:monospace; }
.variant-b2bn .site-footer { background:#031417; color:#9bc4bd; border-top:4px solid #00d6a3; }

/* Organic Freshmart — cheerful retail marketplace / farm shop. */
.variant-oragze {
  --template-color:#247a3b;
  --template-accent:#ffca3a;
  --template-background:#fffaf0;
  --template-surface:#ffffff;
  --template-heading:#183b24;
  --template-text:#58705e;
  --template-border:#dbe7d7;
  background:#fffaf0;
}
.variant-oragze .site-header { background:var(--template-header-bg,#fffdf7); color:var(--template-header-text,inherit); border:0; box-shadow:0 8px 30px rgba(49,89,55,.08); }
.variant-oragze .site-nav { max-width:1320px; min-height:104px; gap:28px; }
.variant-oragze .brand { color:var(--template-header-text, var(--template-color, #247a3b)); font-size:27px; font-weight:950; }
.variant-oragze .nav-links { gap:36px; margin-left:auto; }
.variant-oragze [data-links] a { color:var(--template-header-text, var(--template-color, #315c3b)); font-weight:800; padding:6px 2px; letter-spacing:0.01em; }
.variant-oragze .hero { width:min(1360px,calc(100% - 40px)); max-width:none; min-height:620px; margin:28px auto 60px; border-radius:42px; padding:64px; grid-template-columns:.9fr 1.1fr; background:linear-gradient(125deg,#eef8df,#fff6c9)!important; color:#183b24!important; overflow:hidden; }
.variant-oragze .hero-copy { z-index:1; }
.variant-oragze .hero .eyebrow { color:#247a3b; display:inline-flex; border-radius:999px; background:#fff; padding:9px 14px; box-shadow:0 8px 25px rgba(36,122,59,.1); }
.variant-oragze .hero h1 { color:#183b24; font-size:clamp(50px,6vw,88px); line-height:.94; letter-spacing:-.06em; }
.variant-oragze .hero-subtitle { color:#58705e; font-size:19px; }
.variant-oragze .hero-media { min-height:500px; border:10px solid #fff; border-radius:50% 42% 48% 38%; transform:rotate(2deg); box-shadow:0 30px 60px rgba(36,122,59,.18); }
.variant-oragze .hero-media img { transform:rotate(-2deg) scale(1.04); }
.variant-oragze .btn { border-radius:999px; background:#247a3b; border-color:#247a3b; padding-inline:28px; }
.variant-oragze .btn.secondary { background:#fff; color:#247a3b; }
.variant-oragze .section { width:100%; max-width:none; box-sizing:border-box; padding-block:80px; padding-inline:max(20px,calc((100% - 1320px) / 2)); background:#fffaf0; color:#58705e; }
.variant-oragze .categories-section { width:100%; max-width:none; background:#fffaf0; }
.variant-oragze .section-head { align-items:end; }
.variant-oragze .section h2 { color:#183b24; font-size:clamp(40px,4vw,62px); letter-spacing:-.045em; }
.variant-oragze .cards-grid { grid-template-columns:repeat(3,1fr); gap:24px; }
.variant-oragze .content-card { border:1px solid #dbe7d7; border-radius:30px; background:var(--template-surface, #fff); padding:32px; box-shadow:0 15px 35px rgba(52,91,58,.08); }
.variant-oragze .content-card:nth-child(3n+2) { background:#fff4c7!important; transform:translateY(18px); }
.variant-oragze .content-card h3,
.variant-oragze .content-card p,
.variant-oragze .content-card .eyebrow { color:inherit; }
.variant-oragze .products-grid { grid-template-columns:repeat(4,1fr); gap:20px; }
.variant-oragze .product-card { border-radius:26px; border-color:#dbe7d7; background:#fff; overflow:hidden; box-shadow:0 12px 28px rgba(52,91,58,.08); }
.variant-oragze .product-image { border-radius:20px; margin:10px; overflow:hidden; background:#eef5e8; }
.variant-oragze .product-card h3 { color:#183b24; }
.variant-oragze .product-actions button,.variant-oragze .product-actions a { border-radius:999px!important; }
.variant-oragze .site-footer { background:var(--template-footer-bg,#183b24); color:var(--template-footer-text,#e7f3e9); border-top:12px solid #ffca3a; }
.variant-oragze .about-page,
.variant-oragze .contact-page,
.variant-oragze .auth-page { background:#fffaf0; color:#58705e; }
.variant-oragze .about-hero h1,
.variant-oragze .about-story h2,
.variant-oragze .about-values h2,
.variant-oragze .vendor-stories h2,
.variant-oragze .contact-page h2 { color:#183b24; }
.variant-oragze .about-kicker,
.variant-oragze .contact-page .eyebrow { color:#247a3b; }
.variant-oragze .about-stat,
.variant-oragze .about-value-card,
.variant-oragze .vendor-story-card,
.variant-oragze .contact-page .content-card { border-color:#dbe7d7; border-radius:24px; background:#fff; }
.variant-mquiq .about-page,
.variant-mquiq .contact-page { background:var(--template-background, #f5f6f8); }
.variant-poupqz .about-page,
.variant-poupqz .contact-page { background:var(--template-background, #f4f8fc); }
.variant-whiterose .about-page,
.variant-whiterose .contact-page { background:#fbf7f4; }
.variant-pocofood .about-page,
.variant-pocofood .contact-page { background:#fff6ea; }
.variant-b2bn .about-page,
.variant-b2bn .contact-page,
.variant-b2bn .auth-page { background:#061f24; color:#9bc4bd; }
.variant-b2bn .about-hero h1,
.variant-b2bn .about-story h2,
.variant-b2bn .contact-page h2 { color:#e9fffa; }
.variant-businesstobusiness .about-page,
.variant-businesstobusiness .contact-page,
.variant-businesstobusiness .auth-page { background:#080b12; color:#aab3c4; }
.variant-businesstobusiness .about-hero h1,
.variant-businesstobusiness .about-story h2,
.variant-businesstobusiness .contact-page h2 { color:#f6f7fb; }

@media (max-width: 900px) {
  .variant-businesstobusiness .hero,.variant-b2bn .hero,.variant-oragze .hero { grid-template-columns:1fr; min-height:auto; }
  .variant-businesstobusiness .cards-grid,.variant-b2bn .cards-grid,.variant-oragze .cards-grid { grid-template-columns:1fr; }
  .variant-businesstobusiness .products-grid,.variant-b2bn .products-grid,.variant-oragze .products-grid { grid-template-columns:repeat(2,1fr); }
  .variant-oragze .hero { padding:38px 26px; border-radius:26px; }
}

@media (max-width: 600px) {
  .variant-businesstobusiness .products-grid,.variant-b2bn .products-grid,.variant-oragze .products-grid { grid-template-columns:1fr; }
}

.variant-whiterose {
  --template-color: #0b74c6;
  --template-muted: #f6f7fb;
  --template-radius: 18px;
}

.variant-pocofood {
  --template-color: #d94b2b;
  --template-accent: #ffc222;
  --template-muted: #fbf5de;
  --template-radius: 22px;
}

.variant-pocofood .hero h1 {
  font-size: clamp(42px, 6vw, 76px);
}

.variant-lotus {
  --template-color: #074d8b;
  --template-accent: #ffb703;
  --template-muted: #f6f8fb;
  --template-radius: 14px;
  background: #fff;
}

.lotus-header svg,
.lotus-footer svg,
.lotus-floating-actions svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lotus-inner {
  width: min(1460px, calc(100% - 48px));
  margin: 0 auto;
}

.lotus-topbar {
  background: var(--template-topbar-bg, #074d8b);
  color: var(--template-topbar-text, #fff);
}

.lotus-topbar .lotus-inner,
.lotus-top-contact,
.lotus-socials,
.lotus-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lotus-topbar .lotus-inner {
  min-height: 78px;
  justify-content: space-between;
}

.lotus-top-contact a,
.lotus-socials a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.lotus-top-contact svg {
  color: #ffb703;
}

.lotus-socials a {
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.lotus-nav {
  position: sticky;
  top: 0;
  z-index: 70;
  background: #fff;
  border-bottom: 1px solid #e5eaf1;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.04);
}

.lotus-nav-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(20px, 2.4vw, 36px);
}

.lotus-nav-inner > .lotus-logo,
.lotus-nav-inner > .lotus-wordmark {
  flex: 0 0 auto;
}

.lotus-nav-inner > .lotus-menu {
  flex: 1 1 auto;
  min-width: 0;
}

.lotus-nav-inner.lotus-nav-align-left > .lotus-menu {
  justify-content: flex-start;
}

.lotus-nav-inner.lotus-nav-align-center > .lotus-menu {
  justify-content: center;
}

.lotus-nav-inner.lotus-nav-align-right > .lotus-menu {
  justify-content: flex-end;
}

.lotus-nav-inner > .lotus-actions {
  flex: 0 0 auto;
  margin-left: auto;
}

.lotus-nav .lotus-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: clamp(8px, 1vw, 14px);
  min-width: 0;
  flex-shrink: 0;
}

.lotus-logo {
  width: min(176px, 18vw);
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
}

.lotus-logo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-durga .lotus-logo {
  width: 360px;
  height: 140px;
}

.site-durga .lotus-nav-inner {
  min-height: 120px;
}

.lotus-wordmark {
  font-size: 30px;
  font-weight: 950;
  color: #074d8b;
}

.lotus-menu {
  flex: 0 1 auto;
  min-width: 0;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: clamp(26px, 2.4vw, 42px);
  color: #232936;
  font-size: clamp(16px, 1.05vw, 18px);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.lotus-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 2px;
  max-width: none;
  white-space: nowrap;
  line-height: 1.25;
  font-size: inherit;
}

.lotus-menu a.active,
.lotus-menu a:hover {
  color: #ffb703;
}

.lotus-menu a.active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: #ffb703;
}

/* Keep login, account and cart visible next to Contact. */

.lotus-auth.lotus-cart {
  position: relative;
  width: 44px;
  min-width: 44px;
  padding: 0;
}

.lotus-auth.lotus-profile span {
  display: none;
}

.lotus-auth.lotus-cart b,
.site-auth.site-cart b {
  position: absolute;
  right: -4px;
  top: -6px;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--template-secondary, #ffb703);
  color: #111;
  font-size: 11px;
  font-weight: 800;
  padding: 0 4px;
}

.site-auth {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: 8px;
  padding: 0 12px;
  border: 1px solid var(--template-border, #d8dee8);
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.site-auth.site-cart,
.site-auth.site-profile {
  width: 40px;
  padding: 0;
}

.lotus-catalog span,
.mquiq-catalog span,
.site-catalog span {
  display: inline;
}

.lotus-catalog,
.lotus-auth.lotus-profile {
  padding-inline: 12px;
}

.lotus-catalog,
.mquiq-catalog,
.site-catalog {
  padding-inline: clamp(12px, 1.2vw, 18px);
}

/* Keep the complete Lotus navigation readable in editor previews and
   medium-width desktop layouts without items colliding. */
@media (max-width: 1500px) {
  .lotus-nav-inner {
    min-height: 88px;
    gap: 18px;
  }

  .lotus-logo {
    width: min(168px, 17vw);
    height: 72px;
  }

  .site-durga .lotus-logo {
    width: min(220px, 26vw);
    height: 88px;
  }

  .lotus-menu {
    gap: 22px;
    font-size: 16px;
  }
}

@media (max-width: 1400px) {
  .lotus-nav-inner {
    min-height: 84px;
    gap: 16px;
  }

  .lotus-wordmark {
    flex: 0 0 auto;
    max-width: 220px;
    font-size: 24px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .lotus-logo {
    width: min(156px, 16vw);
    height: 68px;
  }

  .site-durga .lotus-logo {
    width: min(200px, 24vw);
    height: 80px;
  }

  .lotus-menu {
    gap: 18px;
    font-size: 15px;
  }

  .lotus-actions {
    gap: 8px;
  }

  .lotus-contact {
    padding-inline: 16px;
  }
}

@media (max-width: 1180px) {
  .lotus-nav-inner {
    min-height: 80px;
    gap: 14px;
  }

  .lotus-logo {
    width: min(148px, 18vw);
    height: 64px;
  }

  .lotus-menu {
    justify-content: flex-start;
    gap: 14px;
    font-size: 14px;
  }

  .lotus-menu a {
    padding: 8px 2px;
  }

  .lotus-menu a.active::after {
    bottom: -8px;
  }
}

.lotus-menu-auth {
  display: none;
}

.lotus-dropdown {
  position: relative;
}

.lotus-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 18px;
}

.lotus-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: min(430px, calc(100vw - 32px));
  max-height: min(70vh, 520px);
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid #e5eaf1;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  transition: 0.16s ease;
}

.lotus-dropdown-panel a {
  min-width: 0;
  width: 100%;
  align-items: flex-start;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (hover: hover) and (pointer: fine) {
  .lotus-dropdown:hover .lotus-dropdown-panel,
  .lotus-dropdown:focus-within .lotus-dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

.lotus-catalog,
.lotus-contact,
.lotus-auth,
.lotus-primary,
.lotus-secondary {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 950;
  white-space: nowrap;
  flex-shrink: 0;
}

.lotus-catalog {
  min-height: 44px;
  border: 1px solid #d8dee8;
  color: #232936;
  padding: 0 clamp(12px, 1.4vw, 18px);
  background: #fff;
  font-size: clamp(13px, 0.95vw, 16px);
  gap: 8px;
}

.lotus-catalog svg {
  width: 18px;
  height: 18px;
}

.site-catalog,
.mquiq-catalog {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--template-border, #d8dee8);
  border-radius: 999px;
  padding: 0 clamp(12px, 1.4vw, 18px);
  background: #fff;
  color: inherit;
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}

.site-nav .site-catalog {
  margin-left: 12px;
}

.site-catalog svg,
.mquiq-catalog svg {
  width: 18px;
  height: 18px;
}

.lotus-actions .lotus-contact,
.lotus-primary {
  border: 1px solid #074d8b;
  background: #074d8b;
  color: #fff;
  padding: 0 clamp(16px, 2vw, 32px);
  font-size: clamp(13px, 0.95vw, 16px);
}

.lotus-auth {
  min-height: 44px;
  border: 1px solid #d8dee8;
  background: #fff;
  color: #074d8b;
  padding: 0 clamp(12px, 1.4vw, 20px);
  font-size: clamp(13px, 0.95vw, 16px);
}

.lotus-auth svg {
  width: 20px;
  height: 20px;
}

.lotus-secondary {
  min-height: 46px;
  border: 1px solid #d8dee8;
  background: #fff;
  color: #074d8b;
  padding: 0 22px;
}

.lotus-mobile-toggle {
  display: none;
}

.lotus-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(115deg, #485c78 0%, #074d8b 68%);
}

.lotus-hero-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.86fr);
  align-items: center;
  gap: clamp(34px, 4vw, 64px);
  padding: 52px 0 74px;
}

.lotus-hero-copy {
  align-self: center;
  min-width: 0;
}

.lotus-hero-badge {
  display: inline-flex;
  max-width: 680px;
  border-left: 4px solid #ffb703;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.16);
  padding: 12px 22px;
  font-weight: 900;
  line-height: 1.35;
}

.lotus-hero h1 {
  max-width: 780px;
  margin: 26px 0 0;
  color: #fff;
  font-size: clamp(44px, 3.85vw, 74px);
  line-height: 1.05;
  letter-spacing: 0;
}

.lotus-hero h1 span {
  color: #ff9824;
}

.lotus-hero-copy > p:not(.lotus-hero-badge) {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.lotus-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.lotus-hero-media {
  position: relative;
  min-height: 410px;
  align-self: center;
  min-width: 0;
}

.lotus-hero-media > img {
  width: 100%;
  height: 410px;
  border: 6px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.lotus-hero-media article {
  position: absolute;
  right: -14px;
  bottom: -22px;
  width: min(290px, 82%);
  border-radius: 18px;
  background: #fff;
  color: #2b2f36;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
}

.lotus-hero-media article span,
.lotus-feature-mini span,
.lotus-advantage-list span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 10px;
  background: #eaf4ff;
  color: #ffb703;
  font-size: 28px;
  font-weight: 950;
}

.lotus-about,
.lotus-industries,
.lotus-products,
.lotus-advantage,
.lotus-faq,
.lotus-contact-section {
  background: #fff;
  color: #2b2f36;
  padding: 92px 0;
}

.lotus-about-grid,
.lotus-advantage-grid,
.lotus-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: 72px;
}

.lotus-pill,
.lotus-kicker {
  display: inline-flex;
  margin: 0;
  color: #ffb703;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.lotus-pill {
  border-radius: 999px;
  background: #ffb703;
  color: #fff;
  padding: 13px 24px;
  letter-spacing: 0;
  text-transform: none;
}

.lotus-about h2,
.lotus-advantage h2,
.lotus-section-head h2 {
  margin: 22px 0 0;
  color: #2b2f36;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.12;
  letter-spacing: 0;
}

.lotus-about-lead,
.lotus-advantage-grid > div > p:not(.lotus-kicker) {
  margin: 24px 0 0;
  color: #3f4650;
  font-size: 22px;
  line-height: 1.55;
}

.lotus-about-muted {
  margin-top: 30px;
  color: #697381;
  font-size: 18px;
  line-height: 1.7;
}

.lotus-feature-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.lotus-feature-mini article,
.lotus-benefit-grid article,
.lotus-faq-list .faq-item,
.lotus-contact-form,
.lotus-contact-info article {
  border: 1px solid #edf1f6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.lotus-feature-mini article {
  padding: 24px;
}

.lotus-feature-mini h3,
.lotus-benefit-grid h3,
.lotus-advantage-list h3 {
  margin: 16px 0 8px;
  color: #343940;
  font-size: 20px;
}

.lotus-feature-mini p,
.lotus-benefit-grid p,
.lotus-advantage-list p {
  margin: 0;
  color: #6b7280;
  line-height: 1.55;
}

.lotus-about-media,
.lotus-advantage-media {
  position: relative;
  min-height: 480px;
}

.lotus-about-main,
.lotus-advantage-media > img {
  width: 78%;
  height: 420px;
  margin: 0 auto;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
}

.lotus-about-float {
  position: absolute;
  width: 230px;
  height: 130px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.14);
}

.lotus-about-float.top {
  top: 18px;
  right: 0;
}

.lotus-about-float.bottom {
  right: 92px;
  bottom: 10px;
}

.lotus-year-badge {
  position: absolute;
  left: 24px;
  bottom: 48px;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffb703;
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 50px rgba(255, 183, 3, 0.38);
}

.lotus-year-badge strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.lotus-year-badge span {
  display: block;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 800;
}

.lotus-section-head {
  max-width: 960px;
  margin: 0 auto 54px;
  text-align: center;
}

.lotus-title-line {
  display: inline-block;
  width: 90px;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: #ffb703;
}

.lotus-section-head p:last-child {
  max-width: 820px;
  margin: 22px auto 0;
  color: #6b7280;
  font-size: 20px;
  line-height: 1.45;
}

.lotus-industries,
.lotus-faq {
  background: #f7f9fc;
}

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

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

@media (max-width: 1080px) {
  .lotus-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.lotus-product-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto 34px;
}

.lotus-product-search input {
  min-height: 52px;
  border: 1px solid #d7e0ea;
  border-radius: 999px;
  padding: 0 20px;
  color: #111827;
  font-size: 16px;
  outline: none;
}

.lotus-product-search input:focus {
  border-color: var(--template-color, #074d8b);
  box-shadow: 0 0 0 4px rgba(7, 77, 139, 0.12);
}

.lotus-product-search button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--template-color, #074d8b);
  color: #fff;
  padding: 0 24px;
  font-weight: 900;
  cursor: pointer;
}

.lotus-industry-card,
.lotus-product-card {
  overflow: hidden;
  border: 1px solid #e5eaf1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.lotus-industry-card {
  position: relative;
  min-height: 340px;
}

.lotus-industry-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.lotus-industry-card > div {
  padding: 24px;
}

.lotus-industry-card.solid {
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
  color: #fff;
}

.lotus-industry-card.solid:not([style*="background"]) {
  background: linear-gradient(135deg, #165d85, #e3b400);
}

.lotus-industry-card.solid p,
.lotus-industry-card.solid h3 {
  color: #fff;
}

.lotus-product-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
}

.lotus-product-image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: 340px;
  flex: 0 0 auto;
  background: #fff;
  overflow: hidden;
}

.lotus-product-image b {
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: 5px;
  background: #ffb703;
  color: #fff;
  padding: 10px 18px;
  font-weight: 950;
}

.lotus-product-image img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: contain;
  padding: 16px;
}

.lotus-product-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 24px;
  min-height: 220px;
}

.lotus-product-body h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.25;
  min-height: 56px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lotus-product-body h3,
.lotus-product-body h3 a {
  color: #343940;
  text-decoration: none;
}

.lotus-product-body p {
  min-height: 74px;
  margin-top: 0;
  color: #737c88;
  line-height: 1.55;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.lotus-product-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.lotus-product-actions strong {
  min-width: 0;
  color: #111827;
}

.lotus-product-buttons {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.lotus-product-actions button,
.lotus-product-actions a,
.catalog-more-row button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--template-color, #074d8b);
  color: #fff;
  padding: 0 16px;
  font-weight: 900;
  cursor: pointer;
}

.lotus-product-actions a {
  display: inline-flex;
  align-items: center;
  background: var(--template-secondary, #ffb703);
  color: #fff;
}

.lotus-benefits {
  color: #fff;
  padding: 80px 0;
}

.lotus-benefits:not([style*="background"]) {
  background: #074d8b;
}

.lotus-benefits .lotus-section-head h2,
.lotus-benefits .lotus-section-head p {
  color: #fff;
}

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

.lotus-benefit-grid article {
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-align: center;
  box-shadow: none;
}

.lotus-benefit-grid article span {
  color: #fff;
  font-size: 42px;
}

.lotus-benefit-grid h3,
.lotus-benefit-grid p {
  color: #fff;
}

.lotus-advantage-list {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.lotus-advantage-list article {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.lotus-faq-list {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.lotus-faq-list .faq-item {
  box-shadow: none;
}

.lotus-faq-list .faq-item button {
  color: var(--faq-text-color, #111827);
}

.lotus-faq-list .faq-item.open button {
  color: #ffb703;
  background: #eef6ff;
}

.lotus-contact-grid {
  align-items: start;
}

.lotus-contact-grid .contact-map-card {
  grid-column: 1 / -1;
  min-height: 420px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.lotus-contact-info h2 {
  margin: 0 0 24px;
  color: #2b2f36;
  font-size: 42px;
}

.lotus-contact-info {
  display: grid;
  gap: 18px;
}

.lotus-contact-info article {
  display: flex;
  gap: 18px;
  padding: 22px;
}

.lotus-contact-info article > span {
  display: inline-grid;
  flex: 0 0 58px;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 10px;
  background: #eaf4ff;
  color: #ffb703;
  font-size: 28px;
  font-weight: 950;
}

.lotus-contact-info article h3 {
  margin: 0 0 8px;
  color: #343940;
  font-size: 20px;
}

.lotus-contact-info article p {
  margin: 0;
  color: #6b7280;
  line-height: 1.55;
}

.lotus-contact-form {
  display: grid;
  gap: 14px;
  padding: 34px;
  color: #2b2f36;
}

.lotus-contact-form h3 {
  margin: 0;
  color: #2b2f36;
  font-size: 28px;
}

.lotus-contact-form input,
.lotus-contact-form textarea {
  width: 100%;
  border: 1px solid #d8dee8;
  border-radius: 6px;
  padding: 14px;
  color: #1f2937;
  background: #fff;
}

.lotus-contact-form input::placeholder,
.lotus-contact-form textarea::placeholder {
  color: #64748b;
  opacity: 1;
}

.lotus-contact-form textarea {
  min-height: 120px;
}

.lotus-contact-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
}

.lotus-contact-form label input {
  width: 18px;
  height: 18px;
}

.lotus-contact-form button {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: #074d8b;
  color: #fff;
  font-weight: 950;
}

.lotus-footer {
  background: var(--template-footer-bg, #1f2429);
  color: var(--template-footer-text, #fff);
}

/* Keep below-the-fold product content in the DOM for SEO and accessibility,
   while deferring its layout/paint work until it approaches the viewport. */
.detail-tabs,
.detail-related,
.detail-location-links {
  content-visibility: auto;
  contain-intrinsic-size: auto 620px;
}

.detail-location-links {
  margin-top: 56px;
  padding: 44px;
  border: 1px solid #dbe4ee;
  border-radius: 22px;
  background: #f4f8fc;
}

.detail-location-links h2 {
  margin: 0;
  color: #081d3a;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
}

.detail-location-links > h3 {
  margin: 18px 0 0;
  color: #0b5591;
  font-size: 21px;
}

.detail-location-links > p {
  max-width: 920px;
  margin: 10px 0 0;
  color: #53657a;
  font-size: 17px;
  line-height: 1.7;
}

.detail-location-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.detail-location-link-card {
  position: relative;
  display: grid;
  min-height: 190px;
  padding: 26px;
  border: 1px solid #d3dfeb;
  border-radius: 16px;
  background: #fff;
  color: #081d3a;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(8, 29, 58, 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.detail-location-link-card:hover {
  transform: translateY(-4px);
  border-color: #0b66a5;
  box-shadow: 0 18px 36px rgba(8, 29, 58, 0.12);
}

.detail-location-icon {
  font-size: 28px;
}
.detail-location-link-card strong {
  margin-top: 12px;
  font-size: 23px;
}
.detail-location-link-card span:not(.detail-location-icon) {
  margin-top: 8px;
  color: #075b98;
  font-weight: 700;
}
.detail-location-link-card b {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: #075b98;
  font-size: 22px;
}

@media (max-width: 800px) {
  .detail-location-links {
    padding: 28px 20px;
  }
  .detail-location-links-grid {
    grid-template-columns: 1fr;
  }
  .detail-location-link-card {
    min-height: 170px;
  }
}

.lotus-sitemap-hero {
  padding: 86px 0 70px;
  background: linear-gradient(135deg, #073d6b, #0b69a9);
  color: #fff;
}
.lotus-sitemap-hero > .lotus-inner > p {
  margin: 0 0 14px;
  color: #ffd04a;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.lotus-sitemap-hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1;
}
.lotus-sitemap-intro {
  max-width: 980px;
  margin-top: 28px;
}
.lotus-sitemap-intro p {
  margin: 10px 0 0;
  color: #e8f3fb;
  font-size: 17px;
  line-height: 1.75;
}
.lotus-sitemap-content {
  padding-top: 68px;
  padding-bottom: 80px;
}
.lotus-sitemap-content > section + section {
  margin-top: 64px;
}
.lotus-sitemap-content h2 {
  margin: 0 0 16px;
  color: #081d3a;
  font-size: clamp(29px, 4vw, 42px);
}
.lotus-sitemap-content section > p {
  max-width: 900px;
  color: #566b80;
  font-size: 17px;
  line-height: 1.7;
}
.lotus-sitemap-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.lotus-sitemap-pages a,
.lotus-sitemap-products a {
  color: #075b98;
  font-weight: 700;
  text-decoration: none;
}
.lotus-sitemap-pages a:hover,
.lotus-sitemap-products a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.lotus-sitemap-states {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.lotus-sitemap-state {
  overflow: hidden;
  border: 1px solid #d6e1eb;
  border-radius: 14px;
  background: #fff;
}
.lotus-sitemap-state summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  color: #081d3a;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.lotus-sitemap-state summary::-webkit-details-marker {
  display: none;
}
.lotus-sitemap-state summary span {
  color: #0b69a9;
  font-size: 28px;
  transition: transform 0.2s ease;
}
.lotus-sitemap-state[open] summary span {
  transform: rotate(45deg);
}
.lotus-sitemap-city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 22px 22px;
}
.lotus-sitemap-city-grid a {
  padding: 15px 16px;
  border: 1px solid #dbe5ee;
  border-radius: 10px;
  background: #f5f9fc;
  color: #075b98;
  font-weight: 700;
  text-decoration: none;
}
.lotus-sitemap-city-grid a:hover {
  border-color: #0b69a9;
  background: #edf7ff;
}
.lotus-sitemap-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px 34px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.lotus-sitemap-products li {
  padding-bottom: 11px;
  border-bottom: 1px solid #e5ebf1;
  line-height: 1.45;
}
.lotus-sitemap-cta {
  padding: 44px;
  border-radius: 18px;
  background: #082f52;
  color: #fff;
}
.lotus-sitemap-cta h2 {
  color: #fff;
}
.lotus-sitemap-cta p {
  color: #e4eff8 !important;
}
.lotus-sitemap-cta a {
  display: inline-flex;
  margin-top: 12px;
  padding: 14px 26px;
  border-radius: 8px;
  background: #ffbf19;
  color: #10243a;
  font-weight: 900;
  text-decoration: none;
}
@media (max-width: 800px) {
  .lotus-sitemap-hero {
    padding: 64px 0 54px;
  }
  .lotus-sitemap-content {
    padding-top: 48px;
  }
  .lotus-sitemap-city-grid,
  .lotus-sitemap-products {
    grid-template-columns: 1fr;
  }
  .lotus-sitemap-cta {
    padding: 30px 22px;
  }
}

.html-sitemap-hero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, #f7f4ee 0%, #ffffff 100%);
}
.html-sitemap-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.html-sitemap-hero > .html-sitemap-inner > p {
  margin: 0 0 10px;
  color: #8a6a1f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.html-sitemap-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  color: #172033;
}
.html-sitemap-intro {
  max-width: 760px;
}
.html-sitemap-intro p {
  margin: 0 0 12px;
  color: #5f6b7a;
  font-size: 16px;
  line-height: 1.7;
}
.html-sitemap-content {
  padding: 48px 24px 80px;
}
.html-sitemap-content > section + section {
  margin-top: 42px;
}
.html-sitemap-content h2 {
  margin: 0 0 12px;
  font-size: 28px;
  color: #172033;
}
.html-sitemap-content section > p {
  margin: 0 0 18px;
  color: #5f6b7a;
  line-height: 1.6;
}
.html-sitemap-pages,
.html-sitemap-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.html-sitemap-pages a,
.html-sitemap-products a {
  color: #1d4f91;
  text-decoration: none;
  font-weight: 700;
}
.html-sitemap-pages a:hover,
.html-sitemap-products a:hover {
  text-decoration: underline;
}
.html-sitemap-cta {
  padding: 28px 24px;
  border-radius: 18px;
  background: #fff8e8;
  border: 1px solid #f0e2bf;
}
.html-sitemap-cta a {
  display: inline-flex;
  margin-top: 12px;
  padding: 14px 26px;
  border-radius: 10px;
  background: #f4b400;
  color: #111827;
  font-weight: 900;
  text-decoration: none;
}
@media (max-width: 800px) {
  .html-sitemap-pages,
  .html-sitemap-products {
    grid-template-columns: 1fr;
  }
}

.brand-partners {
  padding: 72px 24px;
  background: #f7f8fa;
}
.brand-partners-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.brand-partners-head {
  max-width: 720px;
  margin-bottom: 36px;
}
.brand-partners-head .eyebrow {
  margin: 0 0 10px;
  color: #8a6a1f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.brand-partners-head h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  color: #172033;
}
.brand-partners-head p {
  margin: 0;
  color: #5f6b7a;
  font-size: 16px;
  line-height: 1.7;
}
.brand-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.brand-partners-card {
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid #e6eaf0;
  border-radius: 18px;
  background: #ffffff;
}
.brand-partners-logo {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: #f4f1ea;
  overflow: hidden;
}
.brand-partners-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}
.brand-partners-logo span {
  color: #172033;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.brand-partners-category {
  margin: 0 0 8px;
  color: #8a6a1f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand-partners-copy h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #172033;
}
.brand-partners-copy p {
  margin: 0;
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.65;
}
.brand-partners-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.brand-partners-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  background: var(--template-color, #f4b400);
  color: #111827;
  font-weight: 900;
  text-decoration: none;
}
.brand-partners-cta:hover {
  filter: brightness(0.98);
}
@media (max-width: 980px) {
  .brand-partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .brand-partners {
    padding: 56px 18px;
  }
  .brand-partners-grid {
    grid-template-columns: 1fr;
  }
}

.lotus-locations-hero {
  padding: 88px 24px;
  background: linear-gradient(120deg, #173c62, #07579a);
  color: #fff;
}

.lotus-locations-hero .lotus-inner {
  max-width: 1180px;
}
.lotus-locations-eyebrow {
  margin: 0 0 14px;
  color: #ffbd00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lotus-locations-hero h1 {
  max-width: 850px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
}
.lotus-locations-hero p:last-child {
  max-width: 800px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.75;
}
.lotus-locations-content {
  max-width: 1180px;
  padding-top: 72px;
  padding-bottom: 84px;
}
.lotus-locations-intro {
  max-width: 760px;
  margin-bottom: 48px;
}
.lotus-locations-intro h2,
.lotus-location-group > h2,
.lotus-locations-support h2 {
  color: #172033;
}
.lotus-locations-intro h2 {
  margin: 0 0 12px;
  font-size: 38px;
}
.lotus-locations-intro p {
  color: #586579;
  font-size: 18px;
}
.lotus-location-group {
  margin-top: 48px;
}
.lotus-location-group > h2 {
  margin: 0 0 20px;
  font-size: 26px;
}
.lotus-location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.lotus-location-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid #dce4ed;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(23, 60, 98, 0.07);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.lotus-location-card:hover {
  transform: translateY(-4px);
  border-color: #8cb8df;
  box-shadow: 0 18px 38px rgba(23, 60, 98, 0.12);
}
.lotus-location-pin {
  font-size: 28px;
  line-height: 1;
}
.lotus-location-card h3 {
  margin: 18px 0 10px;
  color: #172033;
  font-size: 23px;
}
.lotus-location-card p {
  margin: 0 0 24px;
  color: #5e6978;
  line-height: 1.65;
}
.lotus-location-card a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  color: #07579a;
  font-weight: 850;
  line-height: 1.4;
}
.lotus-locations-support {
  margin-top: 72px;
  padding: 42px;
  border-radius: 16px;
  background: #eef6fd;
}
.lotus-locations-support h2 {
  margin: 0 0 16px;
  font-size: 34px;
}
.lotus-locations-support p {
  max-width: 900px;
  color: #526174;
  line-height: 1.75;
}
.lotus-locations-support a {
  display: inline-flex;
  margin-top: 12px;
  border-radius: 999px;
  background: #07579a;
  padding: 15px 24px;
  color: #fff;
  font-weight: 900;
}
.lotus-locations-faq {
  margin-top: 76px;
}
.lotus-locations-faq > h2 {
  margin: 0 0 30px;
  color: #172033;
  font-size: clamp(34px, 4vw, 48px);
}
.lotus-locations-faq .lotus-locations-eyebrow {
  color: #07579a;
}
.lotus-locations-faq .lotus-faq-list {
  max-width: none;
}
.lotus-locations-faq .faq-item {
  border: 1px solid #dce4ed;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.lotus-locations-faq .faq-item button {
  font-size: 18px;
  font-weight: 800;
}
.lotus-locations-faq .faq-item p {
  color: #566579;
  line-height: 1.75;
}

@media (max-width: 1050px) {
  .lotus-location-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .lotus-locations-hero {
    padding: 64px 20px;
  }
  .lotus-locations-content {
    padding: 54px 20px 64px;
  }
  .lotus-location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .lotus-location-grid {
    grid-template-columns: 1fr;
  }
  .lotus-location-card {
    min-height: 0;
  }
  .lotus-locations-support {
    padding: 28px 22px;
  }
}

.lotus-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  padding: 64px 0 56px;
  align-items: start;
}

.lotus-footer-brand {
  min-width: 0;
}

.lotus-footer-brand p {
  margin: 18px 0 0;
  max-width: 340px;
  color: color-mix(in srgb, var(--template-footer-text, #fff) 82%, transparent);
  font-size: 15px;
  line-height: 1.7;
}

.lotus-footer img {
  width: min(210px, 100%);
  max-height: 92px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.lotus-footer h3 {
  margin: 0 0 18px;
  color: var(--template-footer-text, #fff);
  font-size: 18px;
  letter-spacing: 0.02em;
}

.lotus-footer h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  margin-top: 12px;
  background: var(--template-color, #ffb703);
}

.lotus-footer p,
.lotus-footer li {
  color: color-mix(in srgb, var(--template-footer-text, #fff) 88%, transparent);
  line-height: 1.6;
}

.lotus-footer a {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.lotus-footer a:hover {
  color: var(--template-footer-text, #fff);
}

.lotus-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lotus-footer li {
  position: relative;
  padding-left: 14px;
}

.lotus-footer li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--template-color, #ffb703);
  font-weight: 900;
}

.lotus-footer li a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  white-space: normal;
  word-break: break-word;
  line-height: 1.45;
}

.lotus-footer li a::before {
  content: none;
}

.lotus-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.lotus-footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.lotus-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lotus-footer-bottom .lotus-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: color-mix(in srgb, var(--template-footer-text, #fff) 78%, transparent);
  font-size: 14px;
}

.lotus-footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.lotus-floating-actions {
  position: fixed;
  right: 30px;
  bottom: 86px;
  z-index: 90;
  display: grid;
  gap: 14px;
}

.lotus-floating-actions a {
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.22);
}

.lotus-float-call {
  background: #f2212d;
}

.durga-call-only {
  bottom: 86px;
}

.lotus-floating-actions .lotus-float-call svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
}

.lotus-float-whatsapp {
  background: #20c965;
}

.lotus-back-top {
  position: fixed;
  left: 32px;
  bottom: 30px;
  width: 46px !important;
  height: 46px !important;
  border-radius: 8px !important;
  background: #ffb703;
}

.mquiq-header svg,
.floating-actions svg,
.menu-button svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mquiq-header {
  position: relative;
  z-index: 80;
}

.mquiq-topbar {
  border-bottom: 1px solid rgba(100, 116, 139, 0.7);
  background: var(
    --template-topbar-bg,
    linear-gradient(90deg, #212833 0%, #2a3240 48%, #1e2632 100%)
  );
  color: var(--template-topbar-text, #fff);
}

.mquiq-topbar-inner,
.mquiq-nav-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 28px;
}

.mquiq-topbar-inner {
  min-height: 56px;
}

.mquiq-contact-line,
.mquiq-socials,
.mquiq-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mquiq-contact-line a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
}

.mquiq-contact-line svg {
  color: #f4b400;
}

.mquiq-socials a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.mquiq-nav {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid rgba(203, 213, 225, 0.8);
  background: rgba(248, 250, 252, 0.96);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.mquiq-nav-inner {
  min-height: 96px;
}

.mquiq-logo {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #d7dde7;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
  flex: 0 0 auto;
}

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

.mquiq-wordmark {
  font-size: 24px;
  font-weight: 900;
  color: #132033;
}

.mquiq-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #2f3136;
  font-size: 16px;
  font-weight: 800;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.mquiq-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.mquiq-menu a:hover,
.mquiq-menu a.active {
  color: #f4b400;
}

.mquiq-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: #f4b400;
}

.mquiq-dropdown {
  position: relative;
}

.mquiq-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 18px;
}

.mquiq-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 430px;
  max-height: min(70vh, 520px);
  overflow: auto;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  display: grid;
  gap: 12px;
  border: 1px solid #d7dde7;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  padding: 22px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(12px);
  transition: 0.16s ease;
}

.mquiq-dropdown:hover .mquiq-dropdown-panel,
.mquiq-dropdown:focus-within .mquiq-dropdown-panel {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mquiq-dropdown-panel strong {
  color: #f4b400;
  font-size: 22px;
}

.mquiq-actions {
  gap: 8px;
  flex: 0 0 auto;
}

.mquiq-catalog,
.mquiq-login,
.mquiq-contact,
.mquiq-circle {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #fff;
  color: #2f3136;
  font-size: 15px;
  font-weight: 800;
  min-height: 50px;
}

.mquiq-catalog {
  gap: 12px;
  padding: 0 20px;
}

.mquiq-circle {
  position: relative;
  width: 50px;
  padding: 0;
}

.mquiq-circle b {
  position: absolute;
  right: -6px;
  top: -10px;
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f4b400;
  color: #fff;
  font-size: 12px;
}

.mquiq-login {
  padding: 0 20px;
}

.mquiq-contact {
  border-color: transparent;
  background: linear-gradient(90deg, #f4b400 0%, #f0a500 100%);
  color: #fff;
  padding: 0 24px;
  box-shadow: 0 14px 34px rgba(244, 180, 0, 0.35);
}

.mquiq-mobile-toggle {
  display: none;
}

.mquiq-hero-section {
  padding: 36px 0 44px;
}

.mquiq-hero-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.mquiq-hero-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.25);
}

.mquiq-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mquiq-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(15, 23, 42, 0.74) 0%,
    rgba(30, 41, 59, 0.84) 52%,
    rgba(15, 23, 42, 0.92) 100%
  );
}

.mquiq-hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(48px);
}

.mquiq-hero-glow.one {
  right: -110px;
  top: -20px;
  width: 28rem;
  height: 28rem;
  background: rgba(244, 180, 0, 0.2);
}

.mquiq-hero-glow.two {
  left: -90px;
  bottom: -150px;
  width: 22rem;
  height: 22rem;
  background: rgba(255, 255, 255, 0.12);
}

.mquiq-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 48px 56px;
}

.mquiq-hero-copy {
  max-width: 820px;
}

.mquiq-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.mquiq-hero-copy h1 {
  margin: 28px 0 0;
  max-width: 980px;
  font-size: clamp(2.1rem, 4.2vw, 4.35rem);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
}

.mquiq-hero-copy p {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.52;
}

.mquiq-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.mquiq-primary,
.mquiq-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 900;
}

.mquiq-primary {
  background: #f4b400;
  color: #1f2937;
  box-shadow: 0 16px 28px rgba(244, 180, 0, 0.32);
}

.mquiq-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(8px);
}

.mquiq-about-feature {
  max-width: 1500px;
  margin: 0 auto;
  padding: 72px 38px 80px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 52px;
  align-items: center;
  background: #f3f3f3;
}

.mquiq-about-copy h2 {
  margin: 18px 0 24px;
  color: #111827;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 3.75rem);
  line-height: 1.08;
}

.mquiq-about-lead {
  max-width: 820px;
  margin: 0;
  color: #334155;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.68;
}

.mquiq-about-feature-list {
  display: grid;
  gap: 26px;
  margin-top: 42px;
}

.mquiq-about-feature-list article {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.mquiq-about-feature-list article > span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eaf2fb;
  color: #f4b400;
  font-size: 34px;
  font-weight: 900;
}

.mquiq-about-feature-list h3 {
  margin: 0 0 10px;
  color: #071126;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.22;
}

.mquiq-about-feature-list p {
  margin: 0;
  color: #334155;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.62;
}

.mquiq-about-media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.13);
}

.mquiq-about-main-img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: contain;
  filter: grayscale(0.25);
}

.mquiq-about-badge {
  position: absolute;
  top: 34px;
  right: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.mquiq-about-mini-card {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: min(520px, 58%);
  border-radius: 20px 0 0 20px;
  background: rgba(255, 255, 255, 0.94);
  padding: 24px 24px 20px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.mquiq-about-mini-card p {
  margin: 0 0 14px;
  color: #111827;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mquiq-about-mini-card > img {
  width: 100%;
  height: 135px;
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
}

.mquiq-about-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.mquiq-about-thumbs img {
  width: 100%;
  height: 82px;
  border-radius: 12px;
  background: #fff;
  object-fit: cover;
}

.mquiq-about-mini-card strong {
  display: block;
  margin-top: 12px;
  color: #475569;
}

.mquiq-about-exp {
  position: absolute;
  left: 0;
  bottom: 28px;
  min-width: 270px;
  border-radius: 0 999px 999px 0;
  background: #f4b400;
  color: #fff;
  padding: 28px 36px;
  text-align: center;
  box-shadow: 0 16px 38px rgba(244, 180, 0, 0.32);
}

.mquiq-about-exp strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 0.95;
}

.mquiq-about-exp span {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.about-page {
  background: var(--template-background, #f3f3f3);
  color: var(--template-text, #2f3136);
}

.about-hero,
.about-story,
.about-values,
.vendor-stories {
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 32px;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 38px;
}

.about-hero-copy {
  max-width: 920px;
}

.about-kicker {
  margin: 0;
  color: var(--template-color, #f4b400);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-hero h1,
.about-story h2,
.about-values h2,
.vendor-stories h2 {
  margin: 14px 0 0;
  color: var(--template-heading, #132033);
  font-size: clamp(1.95rem, 3.8vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.about-story h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.2;
}

.about-hero-copy > p:not(.about-kicker),
.about-values .section-head p,
.vendor-stories > div > p,
.about-story-copy p,
.about-story-body {
  color: #44554a;
  font-size: 15px;
  line-height: 1.62;
}

.about-story-body {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}

.about-hero-media,
.about-story-media,
.about-page img,
.about-page-no-images img {
  display: none !important;
}

.about-page-no-images .lotus-about-grid,
.mquiq-about-feature.about-page-no-images {
  grid-template-columns: 1fr;
}

.about-page-no-images .lotus-about-media,
.about-page-no-images .mquiq-about-media {
  display: none !important;
}

.about-stats,
.about-value-grid,
.vendor-story-grid {
  display: grid;
  gap: 16px;
}

.about-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.about-stat,
.about-value-card,
.vendor-story-card {
  border: 1px solid var(--template-border, #d7dde7);
  border-radius: var(--template-radius, 14px);
  background: var(--template-surface, #fff);
  padding: 20px;
  box-shadow: 0 14px 28px -24px rgba(47, 49, 54, 0.35);
}

.about-stat strong {
  display: block;
  color: var(--template-heading, #132033);
  font-size: 28px;
  line-height: 1.1;
}

.about-stat span,
.about-value-card span,
.vendor-story-card span {
  display: block;
  margin-top: 8px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.about-story-copy {
  border: 1px solid #d7dde7;
  border-radius: 22px;
  background: #fff;
  padding: 34px;
}

.about-story-copy h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.25;
}

.about-values h2,
.vendor-stories h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
}

.about-story-copy p.about-story-body {
  margin: 14px 0 0;
  width: 100%;
  max-width: none;
  color: #3f4f45;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  text-align: left;
}

.variant-oragze .about-story-copy p.about-story-body {
  color: #3f5546;
}

.about-value-grid,
.vendor-story-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
}

.about-value-card h3,
.vendor-story-card h3 {
  margin: 14px 0 8px;
  color: #132033;
  font-size: 21px;
}

.about-value-card p,
.vendor-story-card p {
  margin: 0;
  color: #566173;
  line-height: 1.65;
}

.floating-actions {
  position: fixed;
  right: 32px;
  bottom: 34px;
  z-index: 90;
  display: grid;
  gap: 18px;
}

.floating-actions a,
.floating-actions button {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.floating-actions a:hover,
.floating-actions button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.24);
}

.floating-actions svg {
  width: 32px;
  height: 32px;
}

.float-up {
  background: #f4b400;
}

.float-call {
  background: #ef4444;
}

.float-whatsapp {
  background: #22c55e;
}

.float-chat {
  background: var(--template-color, #0f5a8a);
  animation: chatPulse 2.5s infinite;
  overflow: hidden;
  padding: 5px;
}

.chat-launcher-logo {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: contain;
  background: #ffffff;
}

.site-ovendryers.variant-mquiq .mquiq-logo {
  width: 148px;
  height: 72px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.site-ovendryers.variant-mquiq .mquiq-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(15, 23, 42, 0.12));
}

.site-ovendryers .float-chat {
  width: 82px;
  height: 82px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  animation: none;
}

.site-ovendryers .float-chat:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.site-ovendryers .chat-launcher-logo {
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 10px 22px rgba(15, 23, 42, 0.18));
}

.site-ovendryers .chat-popup-avatar {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.site-ovendryers .chat-header-logo {
  border-radius: 0;
  background: transparent;
}

.chat-popup {
  position: fixed;
  right: 32px;
  bottom: 118px;
  z-index: 91;
  width: min(390px, calc(100vw - 32px));
  max-height: min(680px, calc(100dvh - 140px));
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.chat-popup.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-popup-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: #111827;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.chat-popup-head-main {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.chat-popup-avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #eff6ff;
  color: #0f5a8a;
}

.chat-header-logo {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: contain;
  background: #ffffff;
}

.float-chat.is-open {
  animation: none;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.72);
  visibility: hidden;
}

.chat-popup-head strong {
  display: block;
}

.chat-widget-logo-fallback {
  display: grid;
  place-items: center;
  color: #0f5a8a;
  font-size: 18px;
  font-weight: 900;
}

.chat-popup-head strong {
  margin-top: 3px;
  color: #111827;
  font-size: 19px;
  line-height: 1.05;
}

.chat-popup-head small {
  display: block;
  margin-top: 6px;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
}

.chat-popup-head small:empty {
  display: none;
}

.chat-popup-head .chat-customer-meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.chat-popup-head .chat-customer-meta:has([data-chat-customer-header]:empty) {
  display: none;
}

.category-label h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.blog-section { padding: 60px 20px; max-width: 1100px; margin: 0 auto; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--template-radius, 12px);
  border: 1px solid var(--template-border, #e5eaf1);
  background: var(--template-surface, #fff);
}
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.blog-card-body { padding: 18px; display: grid; gap: 8px; }
.blog-card-body h3 { margin: 0; font-size: 1.1rem; }
.blog-card-body h3 a { color: inherit; text-decoration: none; }
.blog-date { margin: 0; font-size: 0.8rem; color: #64748b; }
.blog-read-more {
  color: var(--template-accent, #0f172a);
  font-weight: 700;
  text-decoration: none;
}
.blog-detail .blog-hero-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--template-radius, 12px);
  margin: 18px 0 24px;
}
.blog-content { line-height: 1.8; color: var(--template-text, #334155); font-size: 1.05rem; }
.blog-content p { margin: 0 0 1.25em; }
.blog-content h1, .blog-content h2, .blog-content h3, .blog-content h4, .blog-content h5, .blog-content h6 {
  color: var(--template-heading, #0f172a);
  font-weight: 700;
  margin: 1.5em 0 0.5em;
  line-height: 1.3;
}
.blog-content h1 { font-size: 2rem; }
.blog-content h2 { font-size: 1.6rem; }
.blog-content h3 { font-size: 1.35rem; }
.blog-content h4 { font-size: 1.15rem; }
.blog-content ul, .blog-content ol { margin: 0 0 1.25em 1.5em; }
.blog-content li { margin-bottom: 0.4em; }
.blog-content blockquote {
  border-left: 4px solid var(--template-accent, #7c3aed);
  padding: 0.8em 1.2em;
  margin: 1.5em 0;
  background: var(--template-muted, #f8fafc);
  border-radius: 0 8px 8px 0;
  font-style: italic;
}
.blog-content img { max-width: 100%; height: auto; border-radius: var(--template-radius, 12px); margin: 1.5em 0; }
.blog-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.blog-content th, .blog-content td { border: 1px solid var(--template-border, #e2e8f0); padding: 10px 14px; text-align: left; }
.blog-content th { background: var(--template-muted, #f8fafc); font-weight: 700; }
.blog-content a { color: var(--template-accent, #7c3aed); text-decoration: underline; }
.blog-content hr { border: none; border-top: 1px solid var(--template-border, #e2e8f0); margin: 2em 0; }

.categories-section { padding: 60px 20px; background-size: cover; background-position: center; }
.categories-editor-note {
  max-width: 1200px;
  margin: 0 auto 16px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.12);
  color: #5b21b6;
  font-size: 13px;
  font-weight: 700;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(var(--categories-columns, 3), minmax(0, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--template-radius, 12px);
  border: 1px solid var(--template-border, #e5eaf1);
  background: var(--template-surface, #fff);
  text-decoration: none;
  color: var(--template-heading);
  transition: transform 0.2s, box-shadow 0.2s;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,23,42,0.12);
}
.category-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.category-placeholder {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, var(--template-muted, #f8fafc), var(--template-border, #e5eaf1));
}
.category-label {
  padding: 14px 16px;
  text-align: center;
}
.category-label h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
}

.custom-page { padding: 60px 20px; }
.custom-page .section-inner { max-width: 900px; margin: 0 auto; }
.custom-page h1 { font-size: 36px; font-weight: 900; margin: 0 0 24px; color: var(--template-heading); }
.custom-page-content { font-size: 16px; line-height: 1.8; color: var(--template-text); min-height: 180px; }
.blank-editable-page { background: #fff; min-height: 52vh; }
.blank-page-inner { padding: 48px 24px 64px; border: 1px dashed #cfd8e3; border-radius: 18px; background: #fbfcfe; }
.blank-page-hint { color: #64748b; font-size: 15px; }

/* ── SellersLogin powered-by bar ── */
.sl-powered-by {
  text-align: center;
  padding: 14px 20px;
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sl-powered-by a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.sl-powered-by a svg { flex-shrink: 0; }
.sl-powered-by a:hover { color: rgba(255,255,255,0.85); }
.sl-powered-by strong {
  color: rgba(255,255,255,0.75);
  font-weight: 800;
  letter-spacing: 0.03em;
}
.sl-powered-by a:hover strong { color: #fff; }
.sl-powered-lotus { background: #1a1a2e; border-top: 3px solid #6d28d9; }
.sl-powered-mquiq { background: #111; border-top: 2px solid #f4b400; }
.sl-powered-oragze { background: #0d2818; border-top: 3px solid #ffca3a; }
.sl-powered-oragze strong { color: #ffca3a; }
.sl-powered-whiterose { background: #1c1017; border-top: 2px solid #e11d48; }
.sl-powered-whiterose strong { color: #fda4af; }
.sl-powered-poupqz { background: #0c1220; border-top: 2px solid #3b82f6; }
.sl-powered-poupqz strong { color: #93c5fd; }
.sl-powered-b2bn, .sl-powered-businesstobusiness { background: #031417; border-top: 3px solid #00d6a3; }
.sl-powered-b2bn strong, .sl-powered-businesstobusiness strong { color: #34d399; }
.sl-powered-pocofood { background: #1a0e00; border-top: 3px solid #f97316; }
.sl-powered-pocofood strong { color: #fdba74; }

/* ── Oragze footer ── */
.oragze-footer { background: var(--template-footer-bg,#183b24); color: var(--template-footer-text,#e7f3e9); border-top: 12px solid #ffca3a; padding: 0; }
.oragze-footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding: 50px 40px 40px; max-width: 1200px; margin: 0 auto; }
.oragze-footer-brand img { width: 60px; height: 60px; border-radius: 14px; object-fit: contain; margin-bottom: 12px; }
.oragze-footer-brand h2 { font-size: 22px; margin: 0 0 10px; color: #fff; }
.oragze-footer-brand p { font-size: 14px; line-height: 1.7; opacity: 0.75; }
.oragze-footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.oragze-footer-links h3 { font-size: 15px; font-weight: 800; color: #ffca3a; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 14px; }
.oragze-footer-links ul { list-style: none; padding: 0; margin: 0; }
.oragze-footer-links li { margin: 0 0 8px; }
.oragze-footer-links a { color: #c8e6c9; text-decoration: none; font-size: 14px; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 200px; }
.oragze-footer-links a:hover { color: #fff; }
.oragze-footer-contact h3 { font-size: 15px; font-weight: 800; color: #ffca3a; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 14px; }
.oragze-footer-contact p { display: flex; align-items: center; gap: 8px; font-size: 14px; margin: 0 0 10px; }
.oragze-footer-contact a { color: #c8e6c9; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.oragze-footer-contact a:hover { color: #fff; }
.oragze-footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; }
.oragze-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 16px 40px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 13px; opacity: 0.7; max-width: 1200px; margin: 0 auto; }
.oragze-footer-bottom a { color: #c8e6c9; text-decoration: none; margin: 0 10px; }
.oragze-footer-bottom a:hover { color: #fff; }

/* ── Whiterose footer ── */
.whiterose-footer { background: #1c1017; color: #f5e6ed; padding: 0; }
.whiterose-footer-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; padding: 56px 40px 40px; max-width: 1200px; margin: 0 auto; }
.whiterose-footer-cta h2 { font-size: 28px; font-weight: 900; color: #fff; margin: 0 0 12px; }
.whiterose-footer-cta p { font-size: 14px; line-height: 1.7; opacity: 0.7; margin: 0 0 20px; }
.whiterose-footer-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 50px; background: #e11d48; color: #fff; font-weight: 700; font-size: 14px; text-decoration: none; transition: background 0.2s; }
.whiterose-footer-btn:hover { background: #be123c; }
.whiterose-footer-btn svg { width: 18px; height: 18px; }
.whiterose-footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.whiterose-footer-cols h3 { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #fda4af; margin: 0 0 14px; }
.whiterose-footer-cols ul { list-style: none; padding: 0; margin: 0; }
.whiterose-footer-cols li { margin: 0 0 8px; }
.whiterose-footer-cols a { color: #f5e6ed; text-decoration: none; font-size: 14px; opacity: 0.8; }
.whiterose-footer-cols a:hover { opacity: 1; color: #fff; }
.whiterose-footer-cols p { font-size: 14px; line-height: 1.7; opacity: 0.75; margin: 0 0 6px; }
.whiterose-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 16px 40px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; opacity: 0.6; }
.whiterose-footer-bottom nav a { color: #f5e6ed; text-decoration: none; margin-left: 16px; }
.whiterose-footer-bottom nav a:hover { color: #fff; }

/* ── Poupqz footer ── */
.poupqz-footer { background: #0c1220; color: #c8d6e5; padding: 0; }
.poupqz-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding: 56px 40px 36px; max-width: 1200px; margin: 0 auto; }
.poupqz-footer-about img { width: 48px; height: 48px; border-radius: 12px; object-fit: contain; margin-bottom: 10px; }
.poupqz-footer-about p { font-size: 14px; line-height: 1.7; opacity: 0.7; margin: 0 0 14px; }
.poupqz-footer-socials { display: flex; gap: 12px; }
.poupqz-footer-socials a { color: #93c5fd; transition: color 0.2s; }
.poupqz-footer-socials a:hover { color: #3b82f6; }
.poupqz-footer-socials svg { width: 20px; height: 20px; }
.poupqz-footer h3 { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #93c5fd; margin: 0 0 14px; }
.poupqz-footer ul { list-style: none; padding: 0; margin: 0; }
.poupqz-footer li { margin: 0 0 8px; }
.poupqz-footer a { color: #c8d6e5; text-decoration: none; font-size: 14px; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 200px; }
.poupqz-footer a:hover { color: #fff; }
.poupqz-footer p { font-size: 14px; margin: 0 0 8px; display: flex; align-items: center; gap: 6px; }
.poupqz-footer svg { width: 15px; height: 15px; flex-shrink: 0; }
.poupqz-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 16px 40px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 12px; opacity: 0.5; }
.poupqz-footer-bottom nav a { color: #c8d6e5; text-decoration: none; margin-left: 14px; }

/* ── B2B footer (b2bn & businesstobusiness) ── */
.b2b-footer { background: #031417; color: #9bc4bd; padding: 0; border-top: 4px solid #00d6a3; }
.b2b-footer-top { padding: 48px 40px 36px; }
.b2b-footer-inner { max-width: 1200px; margin: 0 auto; }
.b2b-footer-brand { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.b2b-footer-brand img { width: 52px; height: 52px; border-radius: 14px; object-fit: contain; }
.b2b-footer-brand h2 { font-size: 20px; color: #fff; margin: 0 0 4px; }
.b2b-footer-brand p { font-size: 13px; line-height: 1.6; opacity: 0.65; margin: 0; }
.b2b-footer-grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 40px; }
.b2b-footer-grid h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #34d399; margin: 0 0 14px; }
.b2b-footer-grid ul { list-style: none; padding: 0; margin: 0; }
.b2b-footer-grid li { margin: 0 0 8px; }
.b2b-footer-grid a { color: #9bc4bd; text-decoration: none; font-size: 14px; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 200px; }
.b2b-footer-grid a:hover { color: #fff; }
.b2b-footer-grid p { font-size: 14px; line-height: 1.7; opacity: 0.75; margin: 0 0 6px; }
.b2b-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 16px 40px; border-top: 1px solid rgba(0,214,163,0.15); font-size: 12px; opacity: 0.55; max-width: 1200px; margin: 0 auto; }
.b2b-footer-bottom nav a { color: #9bc4bd; text-decoration: none; margin-left: 14px; }
.b2b-footer-bottom nav a:hover { color: #fff; }

/* ── Pocofood footer ── */
.pocofood-footer { background: #1a0e00; color: #f5e6d0; padding: 0; border-top: 4px solid #f97316; }
.pocofood-footer-inner { max-width: 1100px; margin: 0 auto; padding: 48px 36px 0; }
.pocofood-footer-top { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.pocofood-footer-top img { width: 50px; height: 50px; border-radius: 50%; object-fit: contain; border: 2px solid #f97316; }
.pocofood-footer-top h2 { font-size: 24px; font-weight: 900; color: #fff; margin: 0; }
.pocofood-footer-cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; padding-bottom: 32px; }
.pocofood-footer-desc p { font-size: 14px; line-height: 1.7; opacity: 0.7; margin: 0 0 14px; }
.pocofood-footer-socials { display: flex; gap: 12px; }
.pocofood-footer-socials a { color: #fdba74; transition: color 0.2s; }
.pocofood-footer-socials a:hover { color: #f97316; }
.pocofood-footer-socials svg { width: 20px; height: 20px; }
.pocofood-footer h3 { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #fdba74; margin: 0 0 14px; }
.pocofood-footer ul { list-style: none; padding: 0; margin: 0; }
.pocofood-footer li { margin: 0 0 8px; }
.pocofood-footer a { color: #f5e6d0; text-decoration: none; font-size: 14px; }
.pocofood-footer a:hover { color: #fff; }
.pocofood-footer p { font-size: 14px; margin: 0 0 8px; line-height: 1.6; opacity: 0.75; }
.pocofood-wa-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; border-radius: 24px; background: #25d366; color: #fff !important; font-weight: 700; font-size: 13px; opacity: 1 !important; }
.pocofood-wa-btn:hover { background: #1ebe5d; }
.pocofood-wa-btn svg { width: 16px; height: 16px; }
.pocofood-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 16px 36px; border-top: 1px solid rgba(249,115,22,0.15); font-size: 12px; opacity: 0.5; }
.pocofood-footer-bottom nav a { color: #f5e6d0; text-decoration: none; margin-left: 14px; }

.chat-powered-by {
  font-size: 9px;
  font-weight: 500;
  opacity: 0.78;
  white-space: nowrap;
}

.chat-popup-head button {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  color: #64748b;
  background: #f8fafc;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.chat-popup-head button:hover {
  color: #111827;
  background: #eef2f7;
  transform: none;
}

.chat-popup-body {
  display: grid;
  gap: 12px;
  max-height: calc(min(680px, calc(100dvh - 140px)) - 86px);
  overflow-y: auto;
  padding: 16px 18px 18px;
}

.chat-popup[data-chat-step="details"] .chat-popup-meta {
  display: none;
}

.chat-popup-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-back-button {
  justify-self: start;
  min-height: 34px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  padding: 0 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.chat-back-button[hidden] {
  display: none;
}

.chat-back-button:hover {
  background: #f8fafc;
}

.chat-popup-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  color: #475569;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chat-message {
  margin: 0;
  padding: 11px 13px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  color: #0f172a;
  background: #f8fafc;
  font-size: 13px;
  line-height: 1.45;
}

.chat-message.error {
  color: #991b1b;
  background: #fee2e2;
}

.chat-popup form {
  display: grid;
  gap: 10px;
}

.chat-popup form[hidden],
.chat-waiting[hidden] {
  display: none;
}

.chat-popup label {
  display: grid;
  gap: 5px;
  color: #334155;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.chat-popup input,
.chat-popup textarea {
  width: 100%;
  border: 1px solid #d7e0ec;
  min-height: 44px;
  border-radius: 10px;
  padding: 10px 12px;
  color: #0f172a;
  background: #fff;
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.chat-popup input:focus,
.chat-popup textarea:focus {
  border-color: #0f5a8a;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15, 90, 138, 0.1);
}

.chat-popup textarea {
  min-height: 92px;
  resize: vertical;
}

.chat-popup button[type="submit"] {
  border: 0;
  min-height: 46px;
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  background: #0f5a8a;
  cursor: pointer;
  font-weight: 950;
  box-shadow: 0 10px 20px rgba(15, 90, 138, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.chat-popup[data-chat-step="details"] button[type="submit"] {
  margin-top: 2px;
}

.chat-popup button[type="submit"]:hover {
  transform: translateY(-1px);
  background: #0b4a72;
  box-shadow: 0 14px 26px rgba(15, 90, 138, 0.24);
}

.chat-popup button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.7;
}

.chat-otp-grid {
  display: grid;
  gap: 16px;
}

.chat-otp-field {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.chat-otp-field legend {
  margin: 0 0 8px;
  color: #334155;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.chat-otp-boxes {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.chat-popup .chat-otp-boxes input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.chat-popup .chat-otp-boxes input:focus {
  border-color: #0f5a8a;
  box-shadow: 0 0 0 3px rgba(15, 90, 138, 0.12);
}

.chat-popup .chat-terms-consent {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 2px 0 0;
  color: #334155;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.chat-popup .chat-terms-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  accent-color: #4f46e5;
  cursor: pointer;
}

.chat-popup .chat-terms-consent a {
  color: #4f46e5;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.chat-popup .chat-terms-consent a:hover {
  color: #3730a3;
}

.chat-popup[data-chat-step="otp"] {
  width: min(460px, calc(100vw - 32px));
}

.chat-popup[data-chat-step="otp"] .chat-message {
  background: #fff;
  border-style: dashed;
}

.chat-waiting {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
  padding: 16px;
}

.chat-waiting strong {
  display: block;
  color: #0f172a;
  font-size: 15px;
}

.chat-waiting p {
  margin: 8px 0 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
}

.chat-thread {
  display: grid;
  gap: 10px;
}

.chat-thread[hidden] {
  display: none;
}

.chat-thread-messages {
  display: grid;
  max-height: 240px;
  gap: 8px;
  overflow: auto;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
  padding: 12px;
}

.chat-thread-row {
  display: grid;
  gap: 4px;
  justify-items: start;
}

.chat-thread-row.customer {
  justify-items: end;
}

.chat-thread-sender {
  display: block;
  margin-bottom: 5px;
  color: #64748b;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.chat-thread-text {
  margin: 0;
}

.chat-thread-time {
  display: block;
  margin-top: 5px;
  text-align: right;
}

.chat-thread-message.customer .chat-thread-sender,
.chat-thread-message.customer .chat-thread-time {
  color: rgba(255, 255, 255, 0.78);
}

.chat-thread-message {
  max-width: 82%;
  margin: 0;
  border-radius: 16px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
}

.chat-thread-message.customer {
  justify-self: end;
  color: #fff;
  border-bottom-right-radius: 6px;
  background: #0f5a8a;
}

.chat-thread-message.vendor {
  justify-self: start;
  color: #0f172a;
  border-bottom-left-radius: 6px;
  background: #fff;
}

.preview-editable {
  outline: 2px solid transparent;
  outline-offset: 4px;
}

.template-editor-mode .preview-editable {
  cursor: pointer;
}

.template-editor-mode .preview-editable:hover {
  outline-color: color-mix(in srgb, var(--template-color) 55%, transparent);
}

@media (max-width: 1360px) {
  .mquiq-topbar-inner,
  .mquiq-nav-inner {
    padding-left: 22px;
    padding-right: 22px;
  }

  .mquiq-menu {
    gap: 18px;
    font-size: 15px;
  }

  .mquiq-catalog span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mquiq-contact {
    padding-left: 20px;
    padding-right: 20px;
  }

  .runtime-card-grid.four,
  .runtime-process-grid,
  .mquiq-about-feature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mquiq-footer-inner {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

@media (max-width: 1220px) {
  .mquiq-nav-inner {
    min-height: 84px;
  }

  .mquiq-logo {
    width: 70px;
    height: 70px;
  }

  .mquiq-menu {
    gap: 14px;
    font-size: 14px;
  }

  .mquiq-catalog {
    width: 50px;
    padding: 0;
  }

  .mquiq-catalog span,
  .mquiq-login {
    display: none;
  }
}

@media (max-width: 1080px) {
  .mquiq-nav-inner {
    min-height: 82px;
    padding: 0 18px;
  }

  .mquiq-logo {
    width: 68px;
    height: 68px;
  }

  .mquiq-mobile-toggle {
    display: inline-grid;
    place-items: center;
    order: 3;
  }

  .mquiq-menu {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid #d7dde7;
    border-radius: 14px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
  }

  .mquiq-menu.open {
    display: flex;
  }

  .mquiq-menu a {
    min-height: 44px;
    padding: 10px 12px;
  }

  .mquiq-menu a.active::after,
  .mquiq-dropdown-panel {
    display: none;
  }

  .mquiq-dropdown.open > .mquiq-dropdown-panel {
    position: static;
    width: 100%;
    max-height: 360px;
    display: grid;
    margin: 4px 0 8px;
    padding: 12px;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
  }

  .mquiq-actions {
    margin-left: auto;
  }

  .mquiq-contact {
    min-height: 46px;
    padding: 0 18px;
  }

  .runtime-gallery-grid,
  .detail-grid,
  .detail-related-grid,
  .mquiq-about-feature {
    grid-template-columns: 1fr;
  }

  .mquiq-about-media {
    min-height: 320px;
  }

  .mquiq-about-main-img {
    min-height: 320px;
  }

  .detail-sticky,
  .detail-thumbs.vertical {
    position: static;
  }

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

@media (max-width: 900px) {
  .lotus-inner {
    width: min(100% - 32px, 100%);
  }

  .lotus-topbar {
    display: none;
  }

  .lotus-nav {
    position: sticky;
    top: 0;
    z-index: 70;
  }

  .lotus-nav-inner {
    min-height: 72px;
    gap: 10px;
    position: relative;
    align-items: center;
    flex-wrap: nowrap;
  }

  .lotus-logo {
    width: min(132px, 34vw);
    height: 52px;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 48%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
  }

  .lotus-wordmark {
    flex: 0 1 auto;
    min-width: 0;
    max-width: min(168px, 44vw);
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .site-durga .lotus-logo {
    width: min(148px, 38vw);
    height: 56px;
  }

  .site-durga .lotus-nav-inner {
    min-height: 76px;
  }

  .lotus-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 4;
    position: relative;
    z-index: 230;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: 0;
    pointer-events: auto;
    touch-action: manipulation;
  }

  .lotus-nav,
  .lotus-nav-inner {
    overflow: visible;
  }

  .lotus-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    max-height: min(75dvh, 560px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    border: 1px solid #e5eaf1;
    border-radius: 0 0 16px 16px;
    background: #fff;
    padding: 8px 12px 16px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 220;
  }

  .lotus-menu.open {
    display: flex;
  }

  .lotus-menu a,
  .lotus-dropdown-panel a {
    display: flex;
    width: 100%;
    min-height: 44px;
    padding: 12px;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: left;
    pointer-events: auto;
  }

  .lotus-menu .lotus-menu-auth {
    display: none !important;
  }

  .lotus-menu a.active::after {
    display: none;
  }

  .lotus-dropdown {
    width: 100%;
    position: static;
  }

  .lotus-dropdown::after {
    display: none;
  }

  .lotus-dropdown-panel {
    display: none !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: none !important;
    max-height: none !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    overflow: visible;
    margin: 0;
    padding: 0 0 8px 8px;
    border: 0;
    border-radius: 0;
    background: #f8fafc;
    box-shadow: none;
  }

  .lotus-actions {
    display: flex !important;
    order: 3;
    margin-left: auto;
    gap: 8px;
    flex: 0 0 auto;
    min-width: 0;
  }

  .lotus-catalog span,
  .mquiq-catalog span,
  .site-catalog span {
    display: none;
  }

  .lotus-catalog,
  .mquiq-catalog,
  .site-catalog {
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    justify-content: center;
  }

  .lotus-contact,
  .mquiq-contact {
    display: none;
  }

  .lotus-login {
    display: none;
  }

  .lotus-auth.lotus-profile span {
    display: none;
  }

  .lotus-dropdown.open > .lotus-dropdown-panel {
    display: grid !important;
    gap: 0;
    margin: 0 0 8px;
    padding: 0 0 8px 8px;
  }

  .lotus-hero-grid,
  .lotus-about-grid,
  .lotus-advantage-grid,
  .lotus-contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .lotus-hero-grid {
    min-height: auto;
    padding: 36px 0 48px;
  }

  .lotus-hero h1 {
    font-size: clamp(30px, 8.5vw, 52px);
    line-height: 1.08;
    max-width: 100%;
  }

  .lotus-hero-copy > p:not(.lotus-hero-badge) {
    font-size: 16px;
    line-height: 1.55;
  }

  .lotus-hero-badge {
    max-width: 100%;
    font-size: 13px;
    padding: 10px 14px;
  }

  .lotus-hero-media {
    min-height: 300px;
  }

  .lotus-hero-media > img {
    height: 300px;
  }

  .lotus-hero-media article {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin-top: 16px;
  }

  .lotus-about,
  .lotus-industries,
  .lotus-products,
  .lotus-advantage,
  .lotus-faq,
  .lotus-contact-section {
    padding: 58px 0;
  }

  .lotus-feature-mini,
  .lotus-industries-grid,
  .lotus-product-grid,
  .lotus-benefit-grid,
  .lotus-footer-grid {
    grid-template-columns: 1fr;
  }

  .lotus-about-media,
  .lotus-advantage-media {
    min-height: 340px;
  }

  .lotus-about-main,
  .lotus-advantage-media > img {
    width: 100%;
    height: 300px;
  }

  .lotus-about-float {
    display: none;
  }

  .lotus-year-badge {
    left: 12px;
    bottom: 12px;
    width: 104px;
    height: 104px;
  }

  .lotus-product-image {
    aspect-ratio: 4 / 3;
    height: auto;
    max-height: 320px;
  }

  .lotus-product-actions strong {
    width: 100%;
  }

  .lotus-footer-bottom .lotus-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .lotus-floating-actions {
    right: 22px;
    bottom: 86px;
  }

  .lotus-floating-actions a {
    width: 56px;
    height: 56px;
  }

  .mquiq-topbar {
    display: none;
  }

  .mquiq-nav-inner {
    min-height: 72px;
    padding: 0 16px;
    position: relative;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .mquiq-logo {
    width: min(116px, 32vw);
    height: 56px;
    max-width: 46%;
    flex: 0 1 auto;
    min-width: 0;
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  }

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

  .mquiq-mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .mquiq-menu {
    position: absolute;
    top: calc(100% - 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid #d7dde7;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
  }

  .mquiq-menu.open {
    display: flex;
  }

  .mquiq-menu a {
    padding: 12px;
  }

  .mquiq-menu a.active::after,
  .mquiq-dropdown-panel {
    display: none;
  }

  .mquiq-actions {
    display: flex !important;
    order: 3;
    margin-left: auto;
    gap: 8px;
    flex: 0 0 auto;
    min-width: 0;
  }

  .mquiq-mobile-toggle {
    order: 4;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }

  .mquiq-hero-section {
    padding: 18px 0 28px;
  }

  .mquiq-hero-wrap,
  .about-hero,
  .about-story,
  .about-values,
  .vendor-stories {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mquiq-hero-card {
    border-radius: 18px;
  }

  .mquiq-hero-content {
    min-height: min(420px, 72vh) !important;
    padding: 28px 20px;
  }

  .mquiq-badge {
    font-size: 11px;
    letter-spacing: 0.14em;
    padding: 7px 14px;
  }

  .mquiq-hero-copy h1 {
    font-size: clamp(1.9rem, 10vw, 3.35rem);
  }

  .about-hero,
  .about-story,
  .about-stats,
  .about-value-grid,
  .vendor-story-grid,
  .runtime-card-grid.four,
  .runtime-card-grid.two,
  .runtime-process-grid,
  .runtime-gallery-grid,
  .detail-grid,
  .mquiq-footer-inner {
    grid-template-columns: 1fr;
  }

  .runtime-section,
  .product-detail-page {
    padding: 44px 18px;
  }

  .runtime-feature-card,
  .runtime-process-card,
  .runtime-testimonial-card,
  .detail-copy {
    padding: 22px;
  }

  .mquiq-about-feature {
    padding: 46px 18px 56px;
  }

  .mquiq-about-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.9rem);
  }

  .mquiq-about-lead,
  .mquiq-about-feature-list p {
    font-size: 15px;
  }

  .mquiq-about-feature-list article {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .mquiq-about-feature-list article > span {
    width: 54px;
    height: 54px;
    font-size: 26px;
  }

  .mquiq-about-media,
  .mquiq-about-main-img {
    min-height: 300px;
  }

  .mquiq-about-badge {
    top: 18px;
    right: 18px;
    padding: 12px 16px;
    font-size: 11px;
  }

  .mquiq-about-mini-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -80px 14px 14px auto;
    border-radius: 16px;
  }

  .mquiq-about-exp {
    position: relative;
    left: auto;
    bottom: auto;
    min-width: 0;
    width: calc(100% - 28px);
    margin: 14px auto;
    border-radius: 18px;
    padding: 20px;
  }

  .detail-media-row,
  .detail-option-row,
  .detail-action-row,
  .detail-benefits,
  .detail-spec-grid,
  .detail-related-grid {
    grid-template-columns: 1fr;
  }

  .detail-thumbs.vertical {
    order: 2;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .detail-media-row {
    gap: 14px;
  }

  .detail-main-wrap {
    min-height: 420px;
    padding: 18px;
  }

  .detail-main-img {
    height: 400px;
  }

  .detail-copy {
    padding: 0;
  }

  .detail-copy h1 {
    font-size: clamp(1.05rem, 5.6vw, 2.2rem);
    white-space: normal;
  }

  .detail-copy p,
  .detail-rich {
    font-size: 14px;
  }

  .detail-rich h2 {
    font-size: 20px;
  }

  .detail-price {
    font-size: 28px;
  }

  .detail-tabs,
  .detail-related {
    margin-top: 46px;
  }

  .detail-tab-panel {
    padding: 20px;
  }

  .mquiq-footer-inner {
    padding: 48px 22px 34px;
  }

  .mquiq-footer-bottom {
    padding: 18px 22px 26px;
  }

  .mquiq-footer-brand img {
    width: 116px;
    height: 116px;
  }

  .about-hero-media,
  .about-story-media {
    min-height: 260px;
  }

  .floating-actions {
    right: 18px;
    bottom: 20px;
    gap: 10px;
  }

  .floating-actions a,
  .floating-actions button {
    width: 56px;
    height: 56px;
  }

  .floating-actions svg {
    width: 23px;
    height: 23px;
  }

  .chat-popup {
    right: 12px;
    left: 12px;
    bottom: 80px;
    width: auto;
    max-height: min(62dvh, calc(100dvh - 148px));
    overflow-y: auto;
    border-radius: 18px;
  }

  .chat-otp-grid {
    grid-template-columns: 1fr;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--template-border);
    border-radius: 8px;
    background: #fff;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-dropdown-panel {
    display: none;
    position: static;
    width: 100%;
    max-height: 280px;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
  }

  .nav-dropdown.open > .nav-dropdown-panel {
    display: grid;
    margin: 0 0 8px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .variant-businesstobusiness .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 20px 48px;
  }

  .variant-businesstobusiness .hero h1 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .variant-businesstobusiness .hero-media,
  .variant-businesstobusiness .hero-media img {
    min-height: 320px;
    max-height: 440px;
  }

  .hero-media,
  .hero-media img {
    min-height: 280px;
  }

  .cards-grid,
  .products-grid,
  .footer-inner,
  .contact-layout,
  .contact-form-card {
    grid-template-columns: 1fr;
  }

  .contact-map-card,
  .contact-map-card iframe {
    min-height: 340px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .mquiq-nav-inner {
    min-height: 76px;
    padding: 0 14px;
  }

  .mquiq-logo {
    width: 104px;
    height: 58px;
    border-radius: 16px;
    padding: 7px;
  }

  .mquiq-mobile-toggle {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .mquiq-menu {
    top: 76px;
  }

  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-action-buttons {
    justify-content: stretch;
  }

  .product-actions button,
  .product-action-buttons a {
    flex: 1 1 0;
  }
}

/* Shared responsive safeguards for every runtime template and page. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

#app,
.site-shell,
.site-shell main,
.runtime-section,
.product-detail-page,
.lotus-inner,
.mquiq-hero-wrap,
.mquiq-about-feature,
.mquiq-footer-inner {
  min-width: 0;
  max-width: 100%;
}

img,
video,
iframe,
svg {
  max-width: 100%;
}

.runtime-policy-content,
.detail-rich {
  overflow-wrap: anywhere;
}

.runtime-policy-content table,
.detail-rich table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.runtime-policy-content pre,
.detail-rich pre {
  max-width: 100%;
  overflow-x: auto;
}

.product-card,
.lotus-product-card,
.detail-copy,
.detail-related-card,
.runtime-cart-item,
.contact-form-card,
.auth-card {
  min-width: 0;
}

.product-card h3,
.lotus-product-body h3,
.detail-copy h1,
.detail-related-card h3,
.runtime-cart-item strong,
.detail-sku {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 900px) {
  .detail-copy h1 {
    max-width: 100%;
    font-size: clamp(1.55rem, 7vw, 2.35rem);
    line-height: 1.15;
    white-space: normal;
  }

  .detail-meta-row,
  .detail-price-box,
  .lotus-product-actions,
  .mquiq-footer-bottom,
  .mquiq-footer-bottom nav,
  .lotus-footer-bottom nav {
    flex-wrap: wrap;
  }

  .detail-sku {
    max-width: 100%;
  }

  .detail-tab-nav {
    max-width: 100%;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .detail-tab-nav button {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .runtime-cart-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .runtime-cart-item img {
    width: 64px;
    height: 64px;
  }

  .runtime-cart-item > b {
    grid-column: 2;
  }

  .tools input {
    flex: 1 1 220px;
    min-width: 0;
  }

  .lotus-product-search {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .lotus-product-search button:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    min-width: 0;
  }

  .section,
  .runtime-section,
  .product-detail-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  .runtime-section,
  .product-detail-page {
    padding-top: 32px;
    padding-bottom: 42px;
  }

  .lotus-inner {
    width: min(100% - 24px, 100%);
  }

  .lotus-nav-inner {
    min-height: 68px;
    gap: 8px;
  }

  .lotus-logo {
    width: min(118px, 32vw);
    height: 46px;
  }

  .site-durga .lotus-logo {
    width: min(132px, 36vw);
    height: 50px;
  }

  .lotus-menu {
    top: 100%;
  }

  .lotus-product-card {
    min-height: 0;
  }

  .lotus-product-body {
    min-height: 0;
    padding: 16px;
  }

  .lotus-product-body h3,
  .lotus-product-body p {
    min-height: 0;
  }

  .lotus-about,
  .lotus-industries,
  .lotus-products,
  .lotus-advantage,
  .lotus-faq,
  .lotus-contact-section {
    padding: 40px 0;
  }

  .lotus-hero-media {
    min-height: 0;
  }

  .lotus-hero-media > img {
    height: min(220px, 52vw);
    border-width: 4px;
    border-radius: 18px;
  }

  .lotus-hero h1,
  .mquiq-hero-copy h1,
  .hero h1 {
    overflow-wrap: anywhere;
  }

  .lotus-hero-actions,
  .mquiq-hero-actions,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lotus-hero-actions a,
  .mquiq-hero-actions a,
  .hero-actions a {
    width: 100%;
    text-align: center;
  }

  .lotus-product-search {
    grid-template-columns: 1fr;
  }

  .lotus-product-search button,
  .lotus-product-search button:last-child {
    grid-column: auto;
    width: 100%;
  }

  .lotus-product-actions,
  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lotus-product-buttons,
  .product-action-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .lotus-product-actions button,
  .lotus-product-actions a,
  .product-actions button,
  .product-action-buttons a {
    width: 100%;
    min-width: 0;
  }

  .detail-main-wrap {
    min-height: min(78vw, 320px);
    padding: 12px;
  }

  .detail-main-img {
    width: 100%;
    height: min(72vw, 300px);
  }

  .detail-thumbs.vertical {
    grid-template-columns: repeat(auto-fit, minmax(58px, 72px));
  }

  .detail-option-row,
  .detail-action-row,
  .detail-benefits,
  .detail-spec-grid {
    gap: 12px;
  }

  .detail-action-row > *,
  .detail-buy,
  .detail-add {
    width: 100%;
  }

  .detail-tabs,
  .detail-related {
    margin-top: 34px;
  }

  .detail-tab-panel,
  .auth-card,
  .runtime-policy-shell,
  .contact-form-card {
    padding: 18px;
  }

  .customer-register-backdrop {
    align-items: end;
    padding: 10px;
  }

  .customer-register-modal {
    max-height: calc(100dvh - 20px);
    padding: 22px 16px;
    border-radius: 18px;
  }

  .customer-register-modal h2 {
    padding-right: 30px;
    font-size: 22px;
  }

  .auth-form-actions,
  .auth-form-actions button,
  .auth-profile-actions,
  .auth-profile-actions button {
    width: 100%;
  }

  .auth-profile-head,
  .auth-section-title,
  .auth-list-item {
    align-items: stretch;
    flex-direction: column;
  }

  .auth-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .auth-dashboard-grid button {
    min-height: 76px;
    text-align: left;
  }

  .auth-dashboard-grid strong {
    font-size: 24px;
  }

  .contact-map-card,
  .contact-map-card iframe {
    min-height: 280px;
  }

  .runtime-testimonial-card {
    flex-basis: calc(100vw - 40px);
    padding: 22px;
  }

  .lotus-footer-bottom nav,
  .mquiq-footer-bottom nav {
    gap: 10px 16px;
  }

  .floating-actions,
  .lotus-floating-actions {
    right: 14px;
    bottom: 16px;
  }
}

@media (max-width: 380px) {
  .section,
  .runtime-section,
  .product-detail-page {
    padding-left: 12px;
    padding-right: 12px;
  }

  .lotus-inner {
    width: min(100% - 20px, 100%);
  }

  .mquiq-nav-inner,
  .lotus-nav-inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  .mquiq-contact {
    display: none;
  }

  .lotus-product-buttons,
  .product-action-buttons {
    grid-template-columns: 1fr;
  }

  .detail-copy h1 {
    font-size: 1.45rem;
  }

  .detail-meta-row {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .site-ovendryers.variant-mquiq .mquiq-logo {
    width: 136px;
    height: 64px;
  }
}

@media (max-width: 520px) {
  .site-ovendryers.variant-mquiq .mquiq-logo {
    width: 118px;
    height: 54px;
  }

  .site-ovendryers .float-chat {
    width: 66px;
    height: 66px;
  }
}

@media (max-width: 380px) {
  .site-ovendryers.variant-mquiq .mquiq-logo {
    width: 106px;
    height: 50px;
  }

  .site-ovendryers .float-chat {
    width: 58px;
    height: 58px;
  }
}

.chat-message:empty {
  display: none;
}

/* Each live-chat variant owns a fixed palette independent of the website. */
.chat-inline-copy,
.chat-variant-progress {
  display: none;
}

.chat-widget-form-area {
  display: grid;
  gap: 12px;
  min-width: 0;
}

/* Bubble Popup: compact messenger tinted with the website accent. */
.chat-widget-toggle--bubble-popup .float-chat {
  border: 4px solid #ffffff;
  background: var(--template-color, #4f46e5);
  box-shadow:
    0 16px 34px color-mix(in srgb, var(--template-color, #4f46e5) 30%, transparent),
    0 0 0 3px color-mix(in srgb, var(--template-color, #4f46e5) 18%, transparent);
}

body:not(.site-ovendryers) .chat-widget-toggle--bubble-popup .float-chat,
body:not(.site-ovendryers) .chat-widget-toggle--slide-in-sidebar .float-chat {
  width: 78px;
  height: 78px;
}

.chat-popup.chat-popup--bubble-popup {
  right: 24px;
  bottom: 48px;
  width: min(410px, calc(100vw - 32px));
  height: auto;
  max-height: calc(100dvh - 68px);
  overflow: hidden;
  border: 1px solid #ddd6fe;
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(49, 46, 129, 0.24);
  transform: translateY(26px) scale(0.94);
  transform-origin: bottom right;
  transition:
    opacity 0.28s ease,
    transform 0.34s cubic-bezier(0.2, 0.85, 0.25, 1);
}

.chat-popup.chat-popup--bubble-popup.open {
  transform: translateY(0) scale(1);
}

.chat-popup--bubble-popup .chat-popup-head button[data-chat-close] {
  display: inline-grid;
  place-items: center;
}

.chat-popup--bubble-popup .chat-popup-head {
  align-items: center;
  padding: 18px 20px;
  border-bottom-color: #e9e7ff;
  background: linear-gradient(135deg, #f5f3ff 0%, #eef2ff 100%);
}

.chat-popup--bubble-popup .chat-popup-avatar {
  width: 46px;
  height: 46px;
  border-color: #c4b5fd;
  border-radius: 15px;
  background: #ffffff;
}

.chat-popup--bubble-popup .chat-popup-head strong {
  color: #1e1b4b;
  font-size: 18px;
}

.chat-popup--bubble-popup .chat-popup-head button {
  color: #4338ca;
  background: rgba(255, 255, 255, 0.78);
}

.chat-popup--bubble-popup .chat-popup-body {
  max-height: calc(100dvh - 154px);
  height: auto;
  overflow-y: auto;
  scrollbar-width: none;
  gap: 0;
  background: #ffffff;
  padding: 18px 20px 20px;
}

.chat-popup--bubble-popup .chat-popup-body::-webkit-scrollbar {
  display: none;
}

.chat-popup--bubble-popup .chat-message {
  border-color: #ddd6fe;
  border-radius: 16px 16px 16px 5px;
  color: #312e81;
  background: #f5f3ff;
}

.chat-popup--bubble-popup input,
.chat-popup--bubble-popup textarea {
  min-height: 44px;
  border-color: #ddd6fe;
  border-radius: 14px;
  background: #fafaff;
}

.chat-popup--bubble-popup textarea {
  min-height: 92px;
}

.chat-composer-tools {
  display: none;
}

.chat-popup--bubble-popup.chat-user-authenticated[data-chat-step="message"]
  textarea {
  min-height: 240px;
}

.chat-popup--bubble-popup[data-chat-step="message"] textarea {
  min-height: 240px;
}

.chat-popup--bubble-popup.chat-user-authenticated[data-chat-step="message"]
  .chat-popup-body {
  padding-bottom: 26px;
}

.chat-popup--bubble-popup form {
  gap: 10px;
}

.chat-popup--bubble-popup label {
  gap: 5px;
}

.chat-popup--bubble-popup button[type="submit"] {
  min-height: 46px;
}

.chat-popup--bubble-popup input:focus,
.chat-popup--bubble-popup textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.14);
}

.chat-popup--bubble-popup button[type="submit"] {
  border-radius: 14px;
  background: #4f46e5;
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.22);
}

.chat-popup--bubble-popup button[type="submit"]:hover {
  background: #4338ca;
}

.chat-popup--bubble-popup .chat-thread-message.customer {
  background: #4f46e5;
}

/* Bubble Popup conversation workspace. The existing indigo/light palette is retained. */
.chat-popup-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.chat-menu-toggle,
.chat-options-menu,
.chat-history-back,
.chat-previous-panel {
  display: none;
}

.chat-popup--bubble-popup .chat-menu-toggle,
.chat-popup--bubble-popup .chat-history-back {
  display: inline-grid;
  place-items: center;
}

.chat-popup--bubble-popup .chat-popup-head-main {
  flex: 1;
}

.chat-popup--bubble-popup .chat-history-back {
  width: 34px;
  height: 34px;
  color: #4338ca;
  background: transparent;
  font-size: 20px;
}

.chat-popup--bubble-popup .chat-history-back[hidden],
.chat-popup--bubble-popup .chat-options-menu[hidden],
.chat-popup--bubble-popup .chat-previous-panel[hidden] {
  display: none;
}

.chat-popup--bubble-popup .chat-menu-toggle {
  width: auto;
  min-width: 34px;
  border-radius: 0;
  padding: 0 4px;
  background: transparent;
  font-size: 24px;
  letter-spacing: 2px;
}

.chat-popup--bubble-popup .chat-menu-toggle:hover {
  color: #4338ca;
  background: transparent;
}

.chat-popup--bubble-popup .chat-options-menu {
  position: absolute;
  top: 42px;
  right: 38px;
  z-index: 8;
  display: grid;
  width: 230px;
  overflow: hidden;
  border: 1px solid #ddd6fe;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(49, 46, 129, 0.2);
}

.chat-popup--bubble-popup .chat-options-menu button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  height: auto;
  min-height: 48px;
  border-radius: 0;
  border-bottom: 1px solid #eeeafd;
  padding: 0 16px;
  color: #312e81;
  background: #ffffff;
  font-size: 14px;
  font-weight: 750;
  text-align: left;
}

.chat-popup--bubble-popup .chat-options-menu button:last-child {
  border-bottom: 0;
}

.chat-popup--bubble-popup .chat-options-menu button:hover {
  color: #312e81;
  background: #f5f3ff;
}

.chat-popup.chat-popup--bubble-popup.is-expanded {
  width: min(660px, calc(100vw - 48px));
}

.chat-popup--bubble-popup.chat-user-authenticated[data-chat-step="message"],
.chat-popup--bubble-popup.chat-user-authenticated[data-chat-step="waiting"],
.chat-popup--bubble-popup.showing-previous {
  height: min(680px, calc(100dvh - 68px));
}

.chat-popup--bubble-popup.chat-user-authenticated[data-chat-step="message"]
  .chat-popup-body,
.chat-popup--bubble-popup.chat-user-authenticated[data-chat-step="waiting"]
  .chat-popup-body,
.chat-popup--bubble-popup.showing-previous .chat-popup-body {
  height: calc(100% - 83px);
  max-height: none;
  overflow: hidden;
  padding: 0;
}

.chat-popup--bubble-popup.chat-user-authenticated .chat-widget-form-area {
  position: relative;
  height: 100%;
  min-height: 0;
  background: linear-gradient(180deg, #fafaff 0%, #ffffff 100%);
}

.chat-popup--bubble-popup.chat-user-authenticated[data-chat-step="message"]
  .chat-message:not(.error),
.chat-popup--bubble-popup.chat-user-authenticated[data-chat-step="waiting"]
  .chat-message:not(.error),
.chat-popup--bubble-popup.chat-user-authenticated .chat-waiting {
  display: none !important;
}

.chat-popup--bubble-popup.chat-user-authenticated .chat-message.error {
  position: absolute;
  top: 12px;
  right: 16px;
  left: 16px;
  z-index: 3;
}

.chat-popup--bubble-popup.chat-user-authenticated [data-chat-message-form] {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  grid-template-columns: minmax(0, 1fr) 40px;
  align-items: end;
  min-height: 78px;
  border: 1px solid #ddd6fe;
  border-radius: 22px;
  background: #ffffff;
  padding: 7px 9px 7px 14px;
  box-shadow: 0 12px 28px rgba(49, 46, 129, 0.1);
}

.chat-popup--bubble-popup.chat-user-authenticated
  [data-chat-message-form]::before {
  position: absolute;
  top: calc(-100% - 54px);
  left: 0;
  max-width: 78%;
  border-radius: 20px 20px 20px 6px;
  padding: 16px 18px;
  color: #312e81;
  background: #ede9fe;
  content: "Hi there 👋\A How can we help you today?";
  white-space: pre-line;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.chat-popup--bubble-popup.chat-user-authenticated
  [data-chat-message-form]
  label,
.chat-popup--bubble-popup [data-chat-reply-form] {
  min-width: 0;
}

.chat-popup--bubble-popup.chat-user-authenticated
  [data-chat-message-form]
  label {
  display: block;
  font-size: 0;
}

.chat-popup--bubble-popup .chat-composer-field {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.chat-popup--bubble-popup.chat-user-authenticated
  [data-chat-message-form]
  textarea,
.chat-popup--bubble-popup [data-chat-reply-form] textarea {
  min-height: 32px !important;
  max-height: 62px;
  resize: none;
  border: 0;
  border-radius: 14px;
  padding: 5px 6px;
  background: transparent;
  box-shadow: none;
  font-size: 14px;
}

.chat-popup--bubble-popup.chat-user-authenticated
  [data-chat-message-form]
  textarea:focus,
.chat-popup--bubble-popup [data-chat-reply-form] textarea:focus {
  border: 0;
  box-shadow: none;
}

.chat-popup--bubble-popup.chat-user-authenticated
  [data-chat-message-form]
  button[type="submit"],
.chat-popup--bubble-popup [data-chat-reply-form] button[type="submit"] {
  width: 40px;
  min-height: 40px;
  border-radius: 999px;
  padding: 0;
  font-size: 0;
}

.chat-popup--bubble-popup.chat-user-authenticated
  [data-chat-message-form]
  button[type="submit"]::before,
.chat-popup--bubble-popup [data-chat-reply-form] button[type="submit"]::before {
  content: "↑";
  font-size: 22px;
  line-height: 1;
}

.chat-popup--bubble-popup .chat-composer-tools {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 24px;
  padding: 0 5px 1px;
}

.chat-popup--bubble-popup .chat-composer-tool {
  display: inline-grid;
  width: 22px;
  height: 22px;
  min-height: 0;
  place-items: center;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: #77738d;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
}

.chat-popup--bubble-popup .chat-composer-tool:hover {
  color: #4f46e5;
  background: transparent;
  transform: none;
}

.chat-popup--bubble-popup .chat-gif-tool {
  width: auto;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  padding: 0 2px;
  font-size: 8px;
  font-weight: 900;
}

.chat-popup--bubble-popup .chat-thread {
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
  min-height: 0;
  gap: 0;
}

.chat-popup--bubble-popup .chat-thread-messages {
  align-content: start;
  max-height: none;
  min-height: 0;
  gap: 14px;
  overflow-y: auto;
  border: 0;
  border-radius: 0;
  background: #fafaff;
  padding: 24px 22px 20px;
  scrollbar-color: #c4b5fd transparent;
  scrollbar-width: thin;
}

.chat-popup--bubble-popup .chat-thread-row {
  display: grid;
  gap: 4px;
  justify-items: start;
}

.chat-popup--bubble-popup .chat-thread-row.customer {
  justify-items: end;
}

.chat-popup--bubble-popup .chat-thread-message {
  max-width: min(82%, 470px);
  border-radius: 20px;
  padding: 12px 15px;
  box-shadow: none;
  font-size: 14px;
}

.chat-popup--bubble-popup .chat-thread-message.vendor {
  border-bottom-left-radius: 6px;
  color: #312e81;
  background: #ede9fe;
}

.chat-popup--bubble-popup .chat-thread-message.customer {
  border-bottom-right-radius: 6px;
  color: #ffffff;
  background: #4f46e5;
}

.chat-popup--bubble-popup .chat-thread-time {
  color: #8b86a7;
  font-size: 10px;
  line-height: 1;
}

.chat-popup--bubble-popup [data-chat-reply-form] {
  grid-template-columns: minmax(0, 1fr) 40px;
  align-items: end;
  margin: 12px 18px 18px;
  min-height: 78px;
  border: 1px solid #ddd6fe;
  border-radius: 22px;
  background: #ffffff;
  padding: 7px 9px 7px 14px;
  box-shadow: 0 12px 28px rgba(49, 46, 129, 0.1);
}

.chat-popup--bubble-popup.showing-previous
  .chat-widget-form-area
  > :not(.chat-previous-panel) {
  display: none !important;
}

.chat-popup--bubble-popup .chat-previous-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100%;
  overflow: hidden;
  background: #fafaff;
}

.chat-popup--bubble-popup .chat-previous-panel > p {
  margin: 0;
  border-bottom: 1px solid #ede9fe;
  padding: 13px 20px;
  color: #6d66a3;
  background: #f5f3ff;
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.chat-popup--bubble-popup .chat-previous-messages {
  display: grid;
  align-content: start;
  height: calc(100% - 45px);
  gap: 14px;
  overflow-y: auto;
  padding: 22px;
}

.chat-popup--bubble-popup .chat-history-empty {
  display: grid;
  gap: 7px;
  place-self: center;
  max-width: 280px;
  border: 1px solid #e9e7ff;
  border-radius: 18px;
  padding: 22px;
  color: #8b86a7;
  background: #ffffff;
  font-size: 13px;
  text-align: center;
}

.chat-popup--bubble-popup .chat-history-empty strong {
  color: #312e81;
  font-size: 15px;
}

/* Slide-in Sidebar: full-height charcoal workspace with emerald actions. */
.chat-widget-toggle--slide-in-sidebar .float-chat {
  border: 3px solid color-mix(in srgb, var(--template-color, #064e3b) 22%, white);
  background: var(--template-color, #064e3b);
  box-shadow: 0 16px 36px color-mix(in srgb, var(--template-color, #064e3b) 30%, transparent);
}

.chat-popup.chat-popup--slide-in-sidebar {
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(470px, 100vw);
  max-height: 100dvh;
  overflow: hidden;
  border: 0;
  border-left: 1px solid #1f2937;
  border-radius: 0;
  background: #f8fafc;
  box-shadow: -22px 0 60px rgba(15, 23, 42, 0.24);
  transform: translateX(100%);
  transform-origin: right center;
  transition:
    opacity 0.25s ease,
    transform 0.38s cubic-bezier(0.22, 0.8, 0.24, 1);
}

.chat-popup.chat-popup--slide-in-sidebar.open {
  transform: translateX(0);
}

.chat-popup--slide-in-sidebar .chat-popup-head {
  min-height: 96px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 0;
  color: #ffffff;
  background: #111827;
}

.chat-popup--slide-in-sidebar .chat-popup-avatar {
  width: 50px;
  height: 50px;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: #ffffff;
}

.chat-popup--slide-in-sidebar .chat-popup-head strong {
  color: #ffffff;
  font-size: 20px;
}

.chat-popup--slide-in-sidebar .chat-popup-head small {
  color: #a7f3d0;
}

.chat-popup--slide-in-sidebar .chat-popup-head button {
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.09);
}

.chat-popup--slide-in-sidebar .chat-popup-body {
  display: block;
  max-height: calc(100dvh - 96px);
  height: calc(100dvh - 96px);
  overflow-y: auto;
  scrollbar-width: none;
  padding: 24px;
  background: #f8fafc;
}

.chat-popup--slide-in-sidebar .chat-popup-body::-webkit-scrollbar {
  display: none;
}

.chat-popup--slide-in-sidebar .chat-variant-progress {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.chat-popup--slide-in-sidebar.chat-user-authenticated .chat-variant-progress {
  display: none;
}

.chat-popup--slide-in-sidebar.chat-user-authenticated[data-chat-step="message"]
  textarea {
  min-height: 180px;
}

.chat-popup--slide-in-sidebar.chat-user-authenticated[data-chat-step="message"]
  .chat-widget-form-area {
  gap: 18px;
}

.chat-popup--slide-in-sidebar .chat-variant-progress span {
  border-bottom: 3px solid #d1d5db;
  color: #94a3b8;
  padding: 0 2px 9px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.chat-popup--slide-in-sidebar[data-chat-step="details"]
  [data-chat-progress="details"],
.chat-popup--slide-in-sidebar[data-chat-step="otp"] [data-chat-progress="otp"],
.chat-popup--slide-in-sidebar[data-chat-step="message"]
  [data-chat-progress="message"],
.chat-popup--slide-in-sidebar[data-chat-step="waiting"]
  [data-chat-progress="message"] {
  border-bottom-color: #059669;
  color: #047857;
}

.chat-popup--slide-in-sidebar .chat-widget-form-area {
  gap: 16px;
}

.chat-popup--slide-in-sidebar .chat-message {
  border: 0;
  border-left: 4px solid #10b981;
  border-radius: 0 10px 10px 0;
  color: #1f2937;
  background: #ecfdf5;
}

.chat-popup--slide-in-sidebar label {
  gap: 7px;
  color: #1f2937;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-popup--slide-in-sidebar input,
.chat-popup--slide-in-sidebar textarea {
  min-height: 50px;
  border-color: #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
}

.chat-popup--slide-in-sidebar input:focus,
.chat-popup--slide-in-sidebar textarea:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.13);
}

.chat-popup--slide-in-sidebar button[type="submit"] {
  min-height: 50px;
  border-radius: 8px;
  background: #059669;
  box-shadow: 0 12px 22px rgba(5, 150, 105, 0.2);
}

.chat-popup--slide-in-sidebar button[type="submit"]:hover {
  background: #047857;
}

.chat-popup--slide-in-sidebar .chat-thread-message.customer {
  background: #059669;
}

/* Inline Embedded: wide two-column violet support section. */
.chat-popup.chat-popup--inline-embedded {
  position: relative;
  inset: auto;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.6fr);
  width: min(1040px, calc(100% - 40px));
  max-height: none;
  margin: 56px auto;
  overflow: hidden;
  border: 1px solid #ddd6fe;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(76, 29, 149, 0.14);
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.chat-popup--inline-embedded .chat-popup-head {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 38px 30px;
  border: 0;
  border-right: 1px solid #ddd6fe;
  color: #2e1065;
  background: linear-gradient(155deg, #f5f3ff 0%, #ede9fe 100%);
}

.chat-popup--inline-embedded .chat-popup-head-main {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.chat-popup--inline-embedded .chat-popup-avatar {
  width: 72px;
  height: 72px;
  border-color: #c4b5fd;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.12);
}

.chat-popup--inline-embedded .chat-popup-head strong {
  color: #2e1065;
  font-size: 25px;
  line-height: 1.2;
}

.chat-popup--inline-embedded .chat-popup-head small {
  color: #6d28d9;
}

.chat-popup--inline-embedded .chat-inline-copy {
  display: block;
  margin: 28px 0 0;
  color: #5b21b6;
  font-size: 14px;
  line-height: 1.7;
}

.chat-popup--inline-embedded .chat-popup-head button[data-chat-close] {
  display: none;
}

.chat-popup--inline-embedded .chat-popup-body {
  display: block;
  max-height: none;
  overflow: visible;
  padding: 38px;
  background: #ffffff;
}

.chat-popup--inline-embedded .chat-widget-form-area {
  gap: 18px;
}

.chat-popup--inline-embedded .chat-message {
  border-color: #e9d5ff;
  border-radius: 12px;
  color: #581c87;
  background: #faf5ff;
}

.chat-popup--inline-embedded [data-chat-details] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.chat-popup--inline-embedded [data-chat-details] button[type="submit"] {
  grid-column: 1 / -1;
}

.chat-popup--inline-embedded label {
  gap: 7px;
  color: #3b0764;
}

.chat-popup--inline-embedded input,
.chat-popup--inline-embedded textarea {
  min-height: 50px;
  border-color: #e9d5ff;
  border-radius: 12px;
  background: #fdfaff;
}

.chat-popup--inline-embedded input:focus,
.chat-popup--inline-embedded textarea:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.14);
}

.chat-popup--inline-embedded button[type="submit"] {
  border-radius: 12px;
  background: #7c3aed;
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.2);
}

.chat-popup--inline-embedded button[type="submit"]:hover {
  background: #6d28d9;
}

.chat-popup--inline-embedded .chat-thread-message.customer {
  background: #7c3aed;
}

/* Shared conversation UI for Slide-in Sidebar and Inline Embedded. */
.chat-popup--slide-in-sidebar {
  --chat-conversation-accent: #059669;
  --chat-conversation-accent-hover: #047857;
  --chat-conversation-soft: #ecfdf5;
  --chat-conversation-border: #a7f3d0;
  --chat-conversation-text: #065f46;
}

.chat-popup--inline-embedded {
  --chat-conversation-accent: #7c3aed;
  --chat-conversation-accent-hover: #6d28d9;
  --chat-conversation-soft: #f3e8ff;
  --chat-conversation-border: #ddd6fe;
  --chat-conversation-text: #581c87;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-menu-toggle,
.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-history-back {
  display: inline-grid;
  place-items: center;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-history-back[hidden],
.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-options-menu[hidden],
.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-previous-panel[hidden] {
  display: none;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-menu-toggle {
  width: auto;
  min-width: 34px;
  border-radius: 0;
  padding: 0 4px;
  background: transparent;
  font-size: 24px;
  letter-spacing: 2px;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-menu-toggle:hover {
  background: transparent;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-options-menu {
  position: absolute;
  top: 46px;
  right: 36px;
  z-index: 12;
  display: grid;
  width: 230px;
  overflow: hidden;
  border: 1px solid var(--chat-conversation-border);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-options-menu
  button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  height: auto;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid #eef0f3;
  border-radius: 0;
  padding: 0 16px;
  color: #1f2937;
  background: #ffffff;
  font-size: 14px;
  font-weight: 750;
  text-align: left;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-options-menu
  button:last-child {
  border-bottom: 0;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-options-menu
  button:hover {
  color: var(--chat-conversation-text);
  background: var(--chat-conversation-soft);
}

.chat-popup--slide-in-sidebar .chat-history-back {
  color: #e5e7eb;
  background: transparent;
  font-size: 20px;
}

.chat-popup--inline-embedded .chat-popup-actions {
  position: absolute;
  top: 28px;
  right: 24px;
}

.chat-popup--inline-embedded .chat-menu-toggle,
.chat-popup--inline-embedded .chat-history-back {
  color: #6d28d9;
}

.chat-popup.chat-popup--slide-in-sidebar.is-expanded {
  width: min(720px, 100vw);
}

.chat-popup.chat-popup--inline-embedded.is-expanded {
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 2fr);
  width: min(1320px, calc(100% - 24px));
}

.chat-popup--inline-embedded.chat-user-authenticated[data-chat-step="message"],
.chat-popup--inline-embedded.chat-user-authenticated[data-chat-step="waiting"],
.chat-popup--inline-embedded.showing-previous {
  min-height: 650px;
}

.chat-popup:is(
    .chat-popup--slide-in-sidebar,
    .chat-popup--inline-embedded
  ).chat-user-authenticated[data-chat-step="message"]
  .chat-popup-body,
.chat-popup:is(
    .chat-popup--slide-in-sidebar,
    .chat-popup--inline-embedded
  ).chat-user-authenticated[data-chat-step="waiting"]
  .chat-popup-body,
.chat-popup:is(
    .chat-popup--slide-in-sidebar,
    .chat-popup--inline-embedded
  ).showing-previous
  .chat-popup-body {
  overflow: hidden;
  padding: 0;
}

.chat-popup--inline-embedded.chat-user-authenticated[data-chat-step="message"]
  .chat-popup-body,
.chat-popup--inline-embedded.chat-user-authenticated[data-chat-step="waiting"]
  .chat-popup-body,
.chat-popup--inline-embedded.showing-previous .chat-popup-body {
  height: 650px;
}

.chat-popup:is(
    .chat-popup--slide-in-sidebar,
    .chat-popup--inline-embedded
  ).chat-user-authenticated
  .chat-widget-form-area {
  position: relative;
  height: 100%;
  min-height: 0;
  gap: 0;
  background: #fafafa;
}

.chat-popup:is(
    .chat-popup--slide-in-sidebar,
    .chat-popup--inline-embedded
  ).chat-user-authenticated[data-chat-step="message"]
  .chat-message:not(.error),
.chat-popup:is(
    .chat-popup--slide-in-sidebar,
    .chat-popup--inline-embedded
  ).chat-user-authenticated[data-chat-step="waiting"]
  .chat-message:not(.error),
.chat-popup:is(
    .chat-popup--slide-in-sidebar,
    .chat-popup--inline-embedded
  ).chat-user-authenticated
  .chat-waiting {
  display: none !important;
}

.chat-popup:is(
    .chat-popup--slide-in-sidebar,
    .chat-popup--inline-embedded
  ).chat-user-authenticated
  .chat-message.error {
  position: absolute;
  top: 12px;
  right: 16px;
  left: 16px;
  z-index: 4;
}

.chat-popup:is(
    .chat-popup--slide-in-sidebar,
    .chat-popup--inline-embedded
  ).chat-user-authenticated
  [data-chat-message-form] {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  grid-template-columns: minmax(0, 1fr) 40px;
  align-items: end;
  min-height: 78px;
  border: 1px solid var(--chat-conversation-border);
  border-radius: 22px;
  background: #ffffff;
  padding: 7px 9px 7px 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.chat-popup:is(
    .chat-popup--slide-in-sidebar,
    .chat-popup--inline-embedded
  ).chat-user-authenticated
  [data-chat-message-form]::before {
  position: absolute;
  top: -140px;
  left: 0;
  max-width: 78%;
  border-radius: 20px 20px 20px 6px;
  padding: 16px 18px;
  color: var(--chat-conversation-text);
  background: var(--chat-conversation-soft);
  content: "Hi there 👋\A How can we help you today?";
  white-space: pre-line;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.chat-popup:is(
    .chat-popup--slide-in-sidebar,
    .chat-popup--inline-embedded
  ).chat-user-authenticated
  [data-chat-message-form]
  label {
  display: block;
  min-width: 0;
  font-size: 0;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-composer-field {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.chat-popup:is(
    .chat-popup--slide-in-sidebar,
    .chat-popup--inline-embedded
  ).chat-user-authenticated
  [data-chat-message-form]
  textarea,
.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  [data-chat-reply-form]
  textarea {
  min-height: 32px !important;
  max-height: 62px;
  resize: none;
  border: 0;
  border-radius: 14px;
  padding: 5px 6px;
  background: transparent;
  box-shadow: none;
  font-size: 14px;
  text-transform: none;
}

.chat-popup:is(
    .chat-popup--slide-in-sidebar,
    .chat-popup--inline-embedded
  ).chat-user-authenticated
  [data-chat-message-form]
  textarea:focus,
.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  [data-chat-reply-form]
  textarea:focus {
  border: 0;
  box-shadow: none;
}

.chat-popup:is(
    .chat-popup--slide-in-sidebar,
    .chat-popup--inline-embedded
  ).chat-user-authenticated
  [data-chat-message-form]
  button[type="submit"],
.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  [data-chat-reply-form]
  button[type="submit"] {
  width: 40px;
  min-height: 40px;
  border-radius: 999px;
  padding: 0;
  background: var(--chat-conversation-accent);
  font-size: 0;
}

.chat-popup:is(
    .chat-popup--slide-in-sidebar,
    .chat-popup--inline-embedded
  ).chat-user-authenticated
  [data-chat-message-form]
  button[type="submit"]::before,
.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  [data-chat-reply-form]
  button[type="submit"]::before {
  content: "↑";
  font-size: 22px;
  line-height: 1;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-composer-tools {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 24px;
  padding: 0 5px 1px;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-composer-tool {
  display: inline-grid;
  width: 22px;
  height: 22px;
  min-height: 0;
  place-items: center;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: #77738d;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-composer-tool:hover {
  color: var(--chat-conversation-accent);
  background: transparent;
  transform: none;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-gif-tool {
  width: auto;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  padding: 0 2px;
  font-size: 8px;
  font-weight: 900;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-thread {
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
  min-height: 0;
  gap: 0;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-thread-messages {
  align-content: start;
  max-height: none;
  min-height: 0;
  gap: 14px;
  overflow-y: auto;
  border: 0;
  border-radius: 0;
  background: #fafafa;
  padding: 24px 22px 20px;
  scrollbar-color: var(--chat-conversation-border) transparent;
  scrollbar-width: thin;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-thread-row {
  display: grid;
  gap: 4px;
  justify-items: start;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-thread-row.customer {
  justify-items: end;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-thread-message {
  max-width: min(82%, 560px);
  border-radius: 20px;
  padding: 12px 15px;
  box-shadow: none;
  font-size: 14px;
  text-transform: none;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-thread-message.vendor {
  border-bottom-left-radius: 6px;
  color: var(--chat-conversation-text);
  background: var(--chat-conversation-soft);
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-thread-message.customer {
  border-bottom-right-radius: 6px;
  color: #ffffff;
  background: var(--chat-conversation-accent);
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-thread-time {
  color: #8b86a7;
  font-size: 10px;
  line-height: 1;
}

.chat-popup--slide-in-sidebar .chat-thread-message.customer .chat-thread-time {
  color: #ffffff;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  [data-chat-reply-form] {
  grid-template-columns: minmax(0, 1fr) 40px;
  align-items: end;
  margin: 12px 18px 18px;
  min-height: 78px;
  border: 1px solid var(--chat-conversation-border);
  border-radius: 22px;
  background: #ffffff;
  padding: 7px 9px 7px 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.chat-popup:is(
    .chat-popup--slide-in-sidebar,
    .chat-popup--inline-embedded
  ).showing-previous
  .chat-widget-form-area
  > :not(.chat-previous-panel) {
  display: none !important;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-previous-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100%;
  overflow: hidden;
  background: #fafafa;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-previous-panel
  > p {
  margin: 0;
  border-bottom: 1px solid var(--chat-conversation-border);
  padding: 13px 20px;
  color: var(--chat-conversation-text);
  background: var(--chat-conversation-soft);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-previous-messages {
  display: grid;
  align-content: start;
  min-height: 0;
  gap: 14px;
  overflow-y: auto;
  padding: 22px;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-history-empty {
  display: grid;
  gap: 7px;
  place-self: center;
  max-width: 280px;
  border: 1px solid var(--chat-conversation-border);
  border-radius: 18px;
  padding: 22px;
  color: #64748b;
  background: #ffffff;
  font-size: 13px;
  text-align: center;
}

.chat-popup:is(.chat-popup--slide-in-sidebar, .chat-popup--inline-embedded)
  .chat-history-empty
  strong {
  color: var(--chat-conversation-text);
  font-size: 15px;
}

@media (max-width: 760px) {
  body:not(.site-ovendryers) .chat-widget-toggle--bubble-popup .float-chat,
  body:not(.site-ovendryers) .chat-widget-toggle--slide-in-sidebar .float-chat {
    width: 66px;
    height: 66px;
  }

  .chat-popup.chat-popup--bubble-popup {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: auto;
    width: min(360px, calc(100vw - 24px));
    height: auto;
    max-height: min(78dvh, 620px);
    border-radius: 20px;
    transform: translateY(28px) scale(0.99);
  }

  .chat-popup.chat-popup--bubble-popup.open {
    transform: translateY(0) scale(1);
  }

  .chat-popup.chat-popup--bubble-popup.chat-user-authenticated[data-chat-step="message"],
  .chat-popup.chat-popup--bubble-popup.chat-user-authenticated[data-chat-step="waiting"],
  .chat-popup.chat-popup--bubble-popup.showing-previous {
    height: min(78dvh, 620px);
  }

  .chat-popup.chat-popup--bubble-popup.is-expanded {
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
  }

  .chat-popup--bubble-popup .chat-popup-body {
    height: auto;
    max-height: calc(min(78dvh, 620px) - 76px);
    overflow-y: auto;
  }

  .chat-popup--bubble-popup.chat-user-authenticated[data-chat-step="message"]
    .chat-popup-body,
  .chat-popup--bubble-popup.chat-user-authenticated[data-chat-step="waiting"]
    .chat-popup-body,
  .chat-popup--bubble-popup.showing-previous .chat-popup-body {
    height: calc(100% - 79px);
    max-height: none;
    overflow: hidden;
  }

  .chat-popup.chat-popup--slide-in-sidebar {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: auto;
    width: min(390px, calc(100vw - 24px));
    height: min(82dvh, 680px);
    max-height: min(82dvh, 680px);
    border: 1px solid #1f2937;
    border-radius: 20px;
  }

  .chat-popup--slide-in-sidebar .chat-popup-head {
    min-height: 78px;
    padding: 14px 16px;
  }

  .chat-popup--slide-in-sidebar .chat-popup-body {
    max-height: calc(min(82dvh, 680px) - 78px);
    height: calc(min(82dvh, 680px) - 78px);
    overflow-y: auto;
    padding: 16px;
  }

  .chat-popup--slide-in-sidebar.chat-user-authenticated[data-chat-step="message"]
    .chat-popup-body,
  .chat-popup--slide-in-sidebar.chat-user-authenticated[data-chat-step="waiting"]
    .chat-popup-body,
  .chat-popup--slide-in-sidebar.showing-previous .chat-popup-body {
    overflow: hidden;
    padding: 0;
  }

  .chat-popup.chat-popup--slide-in-sidebar.is-expanded {
    right: 8px;
    bottom: 8px;
    width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
    max-height: calc(100dvh - 16px);
  }

  .chat-popup.chat-popup--inline-embedded {
    display: grid;
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    max-height: none;
    margin: 30px auto;
    border-radius: 22px;
  }

  .chat-popup--inline-embedded .chat-popup-head {
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid #ddd6fe;
  }

  .chat-popup--inline-embedded .chat-popup-actions {
    top: 18px;
    right: 16px;
  }

  .chat-popup--inline-embedded .chat-popup-head-main {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  .chat-popup--inline-embedded .chat-popup-avatar {
    width: 54px;
    height: 54px;
    border-radius: 15px;
  }

  .chat-popup--inline-embedded .chat-popup-head strong {
    font-size: 20px;
  }

  .chat-popup--inline-embedded .chat-inline-copy {
    margin-top: 16px;
  }

  .chat-popup--inline-embedded .chat-popup-body {
    padding: 24px;
  }

  .chat-popup.chat-popup--inline-embedded.chat-user-authenticated[data-chat-step="message"],
  .chat-popup.chat-popup--inline-embedded.chat-user-authenticated[data-chat-step="waiting"],
  .chat-popup.chat-popup--inline-embedded.showing-previous {
    min-height: 0;
  }

  .chat-popup--inline-embedded.chat-user-authenticated[data-chat-step="message"]
    .chat-popup-body,
  .chat-popup--inline-embedded.chat-user-authenticated[data-chat-step="waiting"]
    .chat-popup-body,
  .chat-popup--inline-embedded.showing-previous .chat-popup-body {
    height: min(560px, calc(100dvh - 150px));
    overflow: hidden;
    padding: 0;
  }

  .chat-popup.chat-popup--inline-embedded.is-expanded {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .chat-popup--inline-embedded [data-chat-details] {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  body:not(.site-ovendryers) .chat-widget-toggle--bubble-popup .float-chat,
  body:not(.site-ovendryers) .chat-widget-toggle--slide-in-sidebar .float-chat {
    width: 62px;
    height: 62px;
  }

  .chat-popup--bubble-popup .chat-popup-head,
  .chat-popup--slide-in-sidebar .chat-popup-head {
    padding: 16px;
  }

  .chat-popup--bubble-popup .chat-popup-body,
  .chat-popup--slide-in-sidebar .chat-popup-body,
  .chat-popup--inline-embedded .chat-popup-body {
    padding: 16px;
  }

  .chat-popup--slide-in-sidebar .chat-variant-progress {
    margin-bottom: 18px;
  }

  .chat-popup--inline-embedded .chat-popup-head {
    padding: 18px 16px;
  }

  .chat-popup--inline-embedded .chat-inline-copy {
    font-size: 13px;
  }

  .chat-popup--slide-in-sidebar.chat-user-authenticated[data-chat-step="message"]
    .chat-popup-body,
  .chat-popup--slide-in-sidebar.chat-user-authenticated[data-chat-step="waiting"]
    .chat-popup-body,
  .chat-popup--slide-in-sidebar.showing-previous .chat-popup-body,
  .chat-popup--inline-embedded.chat-user-authenticated[data-chat-step="message"]
    .chat-popup-body,
  .chat-popup--inline-embedded.chat-user-authenticated[data-chat-step="waiting"]
    .chat-popup-body,
  .chat-popup--inline-embedded.showing-previous .chat-popup-body {
    padding: 0;
  }
}

.site-ovendryers.variant-mquiq .mquiq-logo {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.site-ovendryers .floating-actions .float-chat,
.site-ovendryers .chat-widget-toggle--bubble-popup .float-chat,
.site-ovendryers .chat-widget-toggle--slide-in-sidebar .float-chat {
  border: 0;
  border-radius: 999px;
  background: #0f5a8a;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.22);
  animation: chatPulse 2.5s infinite;
  overflow: hidden;
  padding: 5px;
}

.site-ovendryers .chat-launcher-logo,
.site-ovendryers .chat-header-logo {
  border-radius: 999px;
  background: #ffffff;
}
body {
  background-color: var(--template-background, #fff);
  font-family: var(--template-body-font, Inter, Arial, sans-serif);
  font-size: var(--template-body-size, 16px);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--template-heading-font, inherit);
}
h1 {
  font-size: var(--template-heading-size, revert);
}

/* Stable catalogue cards: 3 per row, 6 shown then Show More. */
.products-grid {
  align-items: stretch;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

@media (max-width: 900px) {
  .products-grid,
  .lotus-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .products-grid,
  .lotus-product-grid {
    grid-template-columns: 1fr !important;
  }
}

.products-grid > .product-card {
  display: flex !important;
  min-height: 0 !important;
  height: 100%;
  flex-direction: column !important;
  overflow: hidden !important;
  border: 1px solid var(--template-border) !important;
  border-radius: max(16px, var(--template-radius)) !important;
  background: var(--template-surface) !important;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.09) !important;
  transform: none !important;
}

.products-grid > .product-card.is-catalog-collapsed,
.lotus-product-card.is-catalog-collapsed {
  display: none !important;
}

.products-grid .product-link {
  display: flex !important;
  min-height: 0;
  flex: 1 1 auto;
  flex-direction: column !important;
  color: inherit;
  text-decoration: none;
}

.products-grid .product-image {
  position: relative !important;
  display: grid !important;
  width: 100% !important;
  height: 180px !important;
  min-height: 180px !important;
  max-height: 180px !important;
  flex: 0 0 180px !important;
  place-items: center;
  overflow: hidden !important;
  background: #f8fafc !important;
}

.products-grid .product-image img {
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: 180px !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 16px !important;
  transform: none !important;
}

.products-grid .product-body {
  position: relative !important;
  display: flex !important;
  min-height: 0;
  flex: 1 1 auto !important;
  flex-direction: column;
  padding: 16px 16px 12px !important;
  background: var(--template-surface) !important;
  transform: none !important;
}

.products-grid .product-body .eyebrow {
  margin: 0 0 10px !important;
  font-size: 11px !important;
  line-height: 1.4 !important;
}

.products-grid .product-body h3 {
  display: -webkit-box;
  min-height: 2.6em;
  margin: 0 !important;
  overflow: hidden;
  color: var(--template-heading) !important;
  font-size: clamp(19px, 1.6vw, 24px) !important;
  line-height: 1.3 !important;
  letter-spacing: -0.015em !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.products-grid .product-body > p:last-child {
  display: -webkit-box;
  margin: 14px 0 0 !important;
  overflow: hidden;
  color: var(--template-text) !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  opacity: 0.78;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.products-grid .product-actions {
  position: relative !important;
  display: flex !important;
  min-height: 78px;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 16px 22px 20px !important;
  border-top: 1px solid var(--template-border);
  background: var(--template-surface) !important;
  transform: none !important;
}

.products-grid .product-actions strong {
  flex: 1 1 auto;
  font-size: 17px;
  white-space: normal;
}

.products-grid .product-action-buttons {
  display: flex !important;
  flex: 0 0 auto;
  flex-wrap: nowrap !important;
  gap: 8px !important;
}

.products-grid .product-action-buttons button,
.products-grid .product-action-buttons a {
  display: inline-flex !important;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px !important;
  padding: 10px 15px !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .products-grid > .product-card {
    min-height: 0 !important;
  }

  .products-grid .product-image {
    height: 160px !important;
    min-height: 160px !important;
    max-height: 160px !important;
    flex-basis: 160px !important;
  }

  .products-grid .product-actions {
    align-items: stretch !important;
    flex-direction: column !important;
  }

  .products-grid .product-action-buttons,
  .products-grid .product-action-buttons button,
  .products-grid .product-action-buttons a {
    width: 100%;
  }
}

/* ── Mobile responsive: new footers ── */
@media (max-width: 768px) {
  .oragze-footer-top { grid-template-columns: 1fr; gap: 28px; padding: 36px 20px 28px; }
  .oragze-footer-links { grid-template-columns: 1fr 1fr; }
  .oragze-footer-bottom { flex-direction: column; gap: 10px; padding: 14px 20px; text-align: center; }

  .whiterose-footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 20px; }
  .whiterose-footer-cols { grid-template-columns: 1fr; gap: 20px; }
  .whiterose-footer-bottom { flex-direction: column; gap: 8px; padding: 14px 20px; text-align: center; }
  .whiterose-footer-bottom nav a { margin: 0 8px; }

  .poupqz-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; padding: 36px 20px 28px; }
  .poupqz-footer-about { grid-column: 1 / -1; }
  .poupqz-footer-bottom { flex-direction: column; gap: 8px; padding: 14px 20px; text-align: center; }

  .b2b-footer-top { padding: 36px 20px 28px; }
  .b2b-footer-brand { flex-direction: column; text-align: center; }
  .b2b-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .b2b-footer-bottom { flex-direction: column; gap: 8px; padding: 14px 20px; text-align: center; }

  .pocofood-footer-inner { padding: 36px 20px 0; }
  .pocofood-footer-top { justify-content: center; }
  .pocofood-footer-cols { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .pocofood-footer-desc { text-align: center; }
  .pocofood-footer-socials { justify-content: center; }
  .pocofood-footer-bottom { flex-direction: column; gap: 8px; padding: 14px 20px; text-align: center; }

  .categories-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* -- Deals page -- */
.deals-page { padding: 60px 20px; }
.deals-page .eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 13px; color: var(--template-accent, #6d28d9); margin: 0 0 8px; }
.deals-page h2 { font-size: 32px; font-weight: 900; margin: 0 0 32px; color: var(--template-heading); }
.deals-page .empty-state { background: var(--template-muted, #f4f6f8); border-radius: 12px; padding: 48px 24px; text-align: center; color: var(--template-text); font-size: 16px; }
.deal-badge { position: absolute; top: 10px; right: 10px; background: #ef4444; color: #fff; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 6px; }
.product-card-img { position: relative; }
.product-price { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.sale-price { font-weight: 700; color: var(--template-accent, #16a34a); font-size: 16px; }
.original-price { text-decoration: line-through; color: #9ca3af; font-size: 14px; }
