: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.customer-register-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, .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, .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-progress { display: flex; align-items: center; width: 130px; margin-bottom: 18px; }
.customer-register-progress span {
  display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%;
  background: #e2e8f0; color: #64748b; font-weight: 700;
}
.customer-register-progress span.active { background: var(--template-primary, #4f46e5); color: #fff; }
.customer-register-progress i { height: 2px; flex: 1; background: #e2e8f0; }
.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-step="2"] 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 .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: .65; cursor: wait; }
.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: Inter, Arial, sans-serif;
  color: var(--template-text);
  background: var(--template-muted);
}

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: 20000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.32);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.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: rgba(255, 255, 255, 0.96);
  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-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-heading);
}

.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 {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 20px;
}

.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: 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);
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.04;
  letter-spacing: 0;
}

.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;
}

.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);
  font-size: 21px;
}

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

.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;
  contain-intrinsic-size: 520px;
}

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

.product-image {
  aspect-ratio: 4 / 3;
  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: 10px;
}

.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: var(--template-heading);
  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;
}

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

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 18px 18px;
  line-height: 1.65;
}

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

.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 {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 32px;
  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(4, minmax(0, 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(4, minmax(0, 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));
  gap: 18px;
}

.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;
  flex: 0 0 min(420px, calc(100vw - 64px));
  min-height: 250px;
  scroll-snap-align: start;
}

.runtime-testimonials-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 4px 18px;
  scroll-padding: 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.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 {
  max-width: 1320px;
}

.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;
  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-form {
  margin-top: 18px;
}

.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 {
  margin-top: 18px;
  text-align: right;
  font-size: 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  margin-top: 42px;
  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;
  gap: 18px;
  padding: 28px;
}

.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 {
  overflow: hidden;
  min-height: 430px;
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 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: 520px;
  border-radius: 22px;
  background: #fff;
  padding: 22px;
}

.detail-main-img {
  width: 100%;
  height: 470px;
  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: #02b875;
}

.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 h3 {
  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: #111827;
  color: #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: #fff;
}

.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;
  left: 50%;
  bottom: 22px;
  z-index: 100;
  display: none;
  transform: translateX(-50%);
  max-width: min(520px, calc(100vw - 24px));
  border-radius: 8px;
  background: #111827;
  color: #fff;
  padding: 12px 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
}

.toast.show {
  display: block;
}

.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;
}

.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: #074d8b;
  color: #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: 168px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.lotus-logo {
  width: 245px;
  height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

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

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

.lotus-menu {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  color: #232936;
  font-size: 18px;
  font-weight: 900;
}

.lotus-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

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

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

.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: 440px;
  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;
}

.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: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 950;
  white-space: nowrap;
}

.lotus-catalog {
  min-height: 48px;
  border: 1px solid #d8dee8;
  color: #232936;
  padding: 0 18px;
  background: #fff;
  font-size: 16px;
  gap: 8px;
}

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

.lotus-contact,
.lotus-primary {
  border: 1px solid #074d8b;
  background: #074d8b;
  color: #fff;
  padding: 0 32px;
}

.lotus-auth {
  min-height: 50px;
  border: 1px solid #d8dee8;
  background: #fff;
  color: #074d8b;
  padding: 0 20px;
}

.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;
}

.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;
  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,
.lotus-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.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: #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: #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;
  background: linear-gradient(135deg, #165d85, #e3b400);
  color: #fff;
}

.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: #074d8b;
  color: #fff;
  padding: 0 16px;
  font-weight: 900;
  cursor: pointer;
}

.lotus-product-actions a {
  display: inline-flex;
  align-items: center;
  background: #ffb703;
  color: #fff;
}

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

.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: #111827;
}

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

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

.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-form {
  display: grid;
  gap: 14px;
  padding: 34px;
}

.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;
}

.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: #1f2429;
  color: #fff;
}

.lotus-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.1fr 1.35fr;
  gap: 56px;
  padding: 72px 0;
}

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

.lotus-footer h3 {
  margin: 0 0 20px;
  color: #fff;
}

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

.lotus-footer p,
.lotus-footer li {
  color: #fff;
  line-height: 1.6;
}

.lotus-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

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

.lotus-footer li a::before {
  content: "›";
  color: #ffb703;
  margin-right: 8px;
}

.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: #fff;
}

.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;
}

.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: linear-gradient(90deg, #212833 0%, #2a3240 48%, #1e2632 100%);
  color: #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: 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: #f3f3f3;
  color: #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: 1.08fr 0.92fr;
  align-items: center;
  gap: 38px;
}

.about-kicker {
  margin: 0;
  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: #132033;
  font-size: clamp(1.95rem, 3.8vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.about-hero-media,
.about-story-media {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid #d7dde7;
  border-radius: 22px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.about-hero-media img,
.about-story-media img {
  width: 100%;
  height: 100%;
  min-height: 344px;
  object-fit: cover;
  border-radius: 16px;
}

.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 #d7dde7;
  border-radius: 14px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 14px 28px -24px rgba(47, 49, 54, 0.35);
}

.about-stat strong {
  display: block;
  color: #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: 0.9fr 1.1fr;
  gap: 34px;
}

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

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

.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: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.25);
}

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

.float-up {
  background: #f4b400;
}

.float-call {
  background: #ef4444;
}

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

.float-chat {
  background: #2f80ff;
  animation: chatPulse 2.5s infinite;
}

.chat-popup {
  position: fixed;
  right: 32px;
  bottom: 132px;
  z-index: 91;
  width: min(360px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

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

.chat-popup-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #14b8a6);
}

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

.chat-popup-head span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-popup-head strong {
  margin-top: 4px;
  font-size: 20px;
}

.chat-popup-head button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.chat-popup-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.chat-message {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  color: #0f172a;
  background: #eff6ff;
  font-size: 14px;
  line-height: 1.45;
}

.chat-popup label {
  display: grid;
  gap: 6px;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.chat-popup input,
.chat-popup textarea {
  width: 100%;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  padding: 11px 12px;
  color: #0f172a;
  background: #fff;
  font: inherit;
}

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

.chat-popup-body > button {
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  color: #fff;
  background: #2563eb;
  cursor: pointer;
  font-weight: 800;
}

.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-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: 520px;
  }

  .mquiq-about-main-img {
    min-height: 520px;
  }

  .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-inner {
    min-height: 148px;
  }

  .lotus-logo {
    width: 104px;
    height: 104px;
    border: 1px solid #e5eaf1;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  }

  .lotus-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .lotus-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% - 12px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid #e5eaf1;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
  }

  .lotus-menu.open {
    display: flex;
  }

  .lotus-menu a {
    padding: 12px;
  }

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

  .lotus-menu a.active::after,
  .lotus-dropdown-panel,
  .lotus-actions {
    display: none;
  }

  .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: 44px 0 56px;
  }

  .lotus-hero h1 {
    font-size: clamp(42px, 12vw, 72px);
  }

  .lotus-hero-copy > p:not(.lotus-hero-badge) {
    font-size: 18px;
  }

  .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: 88px;
    padding: 0 18px;
  }

  .mquiq-logo {
    width: 116px;
    height: 64px;
    border-radius: 18px;
    padding: 8px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  }

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

  .mquiq-mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .mquiq-menu {
    position: absolute;
    top: 86px;
    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,
  .mquiq-actions {
    display: none;
  }

  .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: 420px !important;
    padding: 32px 24px;
  }

  .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: 420px;
  }

  .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: 360px;
    padding: 18px;
  }

  .detail-main-img {
    height: 340px;
  }

  .detail-copy {
    padding: 0;
  }

  .detail-copy h1 {
    font-size: clamp(1.05rem, 5.6vw, 2.2rem);
    white-space: nowrap;
  }

  .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: 16px;
    bottom: 88px;
    width: calc(100vw - 32px);
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .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;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .hero-media,
  .hero-media img {
    min-height: 280px;
  }

  .cards-grid,
  .products-grid,
  .footer-inner,
  .contact-layout {
    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% - 28px, 100%);
  }

  .lotus-nav-inner {
    min-height: 82px;
  }

  .lotus-logo {
    width: 64px;
    height: 64px;
  }

  .lotus-menu {
    top: calc(100% - 4px);
  }

  .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%;
  }

  .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;
  }
}
