/* MIDA Wholesale Landing */
/* Page: /optovym-klientam */
<link rel="stylesheet" href="/catalog/view/theme/default/stylesheet/mida-wholesale-landing.css">
.mwl-page {

  --mwl-dark: #111827;
  --mwl-dark-2: #172033;
  --mwl-blue: #1f3f77;
  --mwl-blue-2: #24559a;
  --mwl-accent: #f3b51b;
  --mwl-accent-2: #ffd45c;
  --mwl-text: #1f2937;
  --mwl-muted: #667085;
  --mwl-border: rgba(17, 24, 39, 0.12);
  --mwl-bg: #f5f7fb;
  --mwl-white: #ffffff;

  font-family: inherit;
  color: var(--mwl-text);
  background: #ffffff;
  overflow: hidden;
}

.mwl-page * {
  box-sizing: border-box;
}

.mwl-page img {
  max-width: 100%;
  height: auto;
}

.mwl-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mwl-section {
  padding: 76px 0;
}

.mwl-section:nth-child(even) {
  background: var(--mwl-bg);
}

.mwl-section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.mwl-section-head h2 {
  margin: 8px 0 14px;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--mwl-dark);
}

.mwl-section-head p {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--mwl-muted);
}

.mwl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mwl-blue);
}

.mwl-eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 3px;
  border-radius: 10px;
  background: var(--mwl-accent);
}

.mwl-section-note {
  max-width: 760px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
  color: var(--mwl-muted);
}

/* Buttons */

.mwl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
}

.mwl-actions-center {
  justify-content: center;
}

.mwl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.mwl-btn:hover,
.mwl-btn:focus {
  text-decoration: none;
  transform: translateY(-1px);
}

.mwl-btn-primary {
  color: #111827;
  background: var(--mwl-accent);
  border-color: var(--mwl-accent);
  box-shadow: 0 10px 24px rgba(243, 181, 27, 0.28);
}

.mwl-btn-primary:hover,
.mwl-btn-primary:focus {
  color: #111827;
  background: var(--mwl-accent-2);
  border-color: var(--mwl-accent-2);
}

.mwl-btn-secondary {
  color: var(--mwl-white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.mwl-btn-secondary:hover,
.mwl-btn-secondary:focus {
  color: var(--mwl-white);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.42);
}

/* Hero */

.mwl-hero {
  position: relative;
  padding: 84px 0 78px;
  background:
    radial-gradient(circle at 88% 20%, rgba(243, 181, 27, 0.24), transparent 28%),
    linear-gradient(135deg, #101827 0%, #182743 52%, #203f70 100%);
  color: #ffffff;
}

.mwl-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(243, 181, 27, 0.11);
  pointer-events: none;
}

.mwl-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 44px;
  align-items: center;
}

.mwl-hero .mwl-eyebrow {
  color: var(--mwl-accent);
}

.mwl-hero .mwl-eyebrow::before {
  background: var(--mwl-accent);
}

.mwl-hero h1 {
  margin: 0 0 18px;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.mwl-hero__lead {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.mwl-hero__note {
  display: inline-block;
  margin: 0;
  padding: 12px 14px;
  border-left: 4px solid var(--mwl-accent);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.5;
}

.mwl-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mwl-hero__features li {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 15px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 750;
}

.mwl-hero__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f3b51b;
}

.mwl-hero__visual {
  position: relative;
}

.mwl-hero__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 390px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.mwl-hero__image-placeholder span {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.22);
  font-size: 14px;
  font-weight: 700;
}

/* Cards */

.mwl-card-grid {
  display: grid;
  gap: 18px;
}

.mwl-card-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mwl-card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mwl-card {
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--mwl-border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.045);
}

.mwl-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--mwl-dark);
}

.mwl-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--mwl-muted);
}

/* Catalog categories */

.mwl-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.mwl-category-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 18px 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--mwl-border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.045);
  text-align: center;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 850;
  color: var(--mwl-dark);
}

/* =========================
   BRANDS BLOCK — restore premium grid
   ========================= */

.mwl-page .mwl-brands {
  position: relative;
}

.mwl-page .mwl-brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.mwl-page .mwl-brand-grid li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mwl-page .mwl-brand-grid li::marker {
  content: "";
  font-size: 0;
}

.mwl-page .mwl-brand-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
  text-decoration: none !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.mwl-page .mwl-brand-grid a:hover,
.mwl-page .mwl-brand-grid a:focus {
  transform: translateY(-2px);
  border-color: #f3b51b;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
  text-decoration: none !important;
}

.mwl-page .mwl-brand-grid img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 34px;
  height: auto;
}

.mwl-page .mwl-brand-note {
  margin-top: 28px;
  text-align: center;
}

/* ===== responsive ===== */

@media (max-width: 1199px) {
  .mwl-page .mwl-brand-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .mwl-page .mwl-brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .mwl-page .mwl-brand-grid a {
    min-height: 82px;
    padding: 16px 18px;
  }
}

@media (max-width: 767px) {
  .mwl-page .mwl-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .mwl-page .mwl-brand-grid a {
    min-height: 74px;
    padding: 14px 14px;
    border-radius: 14px;
  }

  .mwl-page .mwl-brand-grid img {
    max-height: 28px;
  }
}

/* Audience */

.mwl-two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.mwl-panel {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--mwl-border);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.045);
}

.mwl-panel-muted {
  background: #f7f8fb;
}

.mwl-panel h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 850;
  color: var(--mwl-dark);
}

.mwl-panel p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--mwl-muted);
}

.mwl-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mwl-check-list li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--mwl-text);
}

.mwl-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mwl-accent);
}

.mwl-check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #111827;
  border-bottom: 2px solid #111827;
  transform: rotate(45deg);
}

/* Advantages dark block */

.mwl-advantages {
  background:
    radial-gradient(circle at 10% 20%, rgba(243, 181, 27, 0.12), transparent 28%),
    linear-gradient(135deg, #111827 0%, #172033 48%, #1e3b68 100%) !important;
  color: #ffffff;
}

.mwl-section-head-light h2 {
  color: #ffffff;
}

.mwl-section-head-light p {
  color: rgba(255, 255, 255, 0.75);
}

.mwl-advantages .mwl-eyebrow {
  color: var(--mwl-accent);
}

.mwl-card-dark {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.mwl-card-dark h3 {
  color: #ffffff;
}

.mwl-card-dark p {
  color: rgba(255, 255, 255, 0.76);
}

/* Steps */

.mwl-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mwl-step-card {
  position: relative;
  min-height: 210px;
  padding: 26px 22px 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--mwl-border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.045);
}

.mwl-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--mwl-accent);
  color: #111827;
  font-size: 14px;
  font-weight: 900;
}

.mwl-step-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 850;
  color: var(--mwl-dark);
}

.mwl-step-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--mwl-muted);
}

/* Highlight */

.mwl-highlight {
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(243, 181, 27, 0.22), rgba(243, 181, 27, 0.08)),
    #ffffff;
  border: 1px solid rgba(243, 181, 27, 0.32);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

.mwl-highlight__content {
  max-width: 920px;
  padding: 38px;
  margin: 0 auto;
}

.mwl-highlight h2 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.18;
  font-weight: 900;
  color: var(--mwl-dark);
}

.mwl-highlight p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.62;
  color: var(--mwl-text);
}

.mwl-number-list {
  margin: 20px 0;
  padding-left: 24px;
}

.mwl-number-list li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--mwl-text);
}

.mwl-warning {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.08);
  border-left: 5px solid var(--mwl-accent);
  font-weight: 750;
}

/* Mini list */

.mwl-mini-list {
  display: grid;
  gap: 14px;
}

.mwl-mini-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--mwl-border);
}

.mwl-mini-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mwl-mini-item h4,
.mwl-payment-note h4 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 850;
  color: var(--mwl-dark);
}

.mwl-mini-item p,
.mwl-payment-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--mwl-muted);
}

.mwl-payment-note {
  margin-top: 20px;
  padding: 18px;
  border-radius: 16px;
  background: #f7f8fb;
  border: 1px solid var(--mwl-border);
}

/* FAQ */

.mwl-faq-list {
  display: grid;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.mwl-faq-item {
  padding: 22px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--mwl-border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.mwl-faq-item h3 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
  color: var(--mwl-dark);
}

.mwl-faq-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.58;
  color: var(--mwl-muted);
}

/* Questions and final CTA */

.mwl-question-box,
.mwl-final-box {
  border-radius: 30px;
  padding: 38px;
  background: #ffffff;
  border: 1px solid var(--mwl-border);
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.06);
}

.mwl-question-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.mwl-question-box h2,
.mwl-final-box h2 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.18;
  font-weight: 900;
  color: var(--mwl-dark);
}

.mwl-question-box p,
.mwl-final-box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.62;
  color: var(--mwl-muted);
}

.mwl-final {
  background:
    radial-gradient(circle at 80% 20%, rgba(243, 181, 27, 0.18), transparent 26%),
    linear-gradient(135deg, #111827 0%, #1b2c49 100%) !important;
}

.mwl-final-box {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.mwl-final-box h2 {
  color: #ffffff;
}

.mwl-final-box p {
  color: rgba(255, 255, 255, 0.78);
}

.mwl-final-box .mwl-eyebrow {
  color: var(--mwl-accent);
}

.mwl-final-note {
  max-width: 760px;
  margin: 20px auto 0 !important;
  font-size: 14px !important;
}

/* Responsive */

@media (max-width: 1199px) {
  .mwl-hero h1 {
    font-size: 44px;
  }

  .mwl-card-grid-4,
  .mwl-category-grid,
  .mwl-brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mwl-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .mwl-section {
    padding: 62px 0;
  }

  .mwl-hero {
    padding: 68px 0;
  }

  .mwl-hero__grid {
    grid-template-columns: 1fr;
  }

  .mwl-hero__image-placeholder {
    min-height: 300px;
  }

  .mwl-card-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mwl-two-columns {
    grid-template-columns: 1fr;
  }

  .mwl-question-box {
    grid-template-columns: 1fr;
  }

  .mwl-question-box__actions {
    display: flex;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .mwl-container {
    padding: 0 16px;
  }

  .mwl-section {
    padding: 48px 0;
  }

  .mwl-section-head {
    margin-bottom: 26px;
    text-align: left;
  }

  .mwl-section-head h2 {
    font-size: 28px;
  }

  .mwl-section-head p {
    font-size: 15px;
  }

  .mwl-hero {
    padding: 52px 0;
  }

  .mwl-hero h1 {
    font-size: 34px;
  }

  .mwl-hero__lead {
    font-size: 16px;
  }

  .mwl-actions,
  .mwl-actions-center {
    align-items: stretch;
    justify-content: stretch;
  }

  .mwl-btn {
    width: 100%;
  }

  .mwl-hero__features {
    gap: 8px;
  }

  .mwl-hero__features li {
    font-size: 12px;
  }

  .mwl-hero__image-placeholder {
    min-height: 220px;
    border-radius: 20px;
  }

  .mwl-card-grid-4,
  .mwl-card-grid-3,
  .mwl-category-grid,
  .mwl-brand-grid,
  .mwl-step-grid {
    grid-template-columns: 1fr;
  }

  .mwl-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mwl-brand-card {
    min-height: 72px;
    padding: 12px;
    border-radius: 12px;
  }

  .mwl-brand-card img {
    max-height: 46px;
  }

  .mwl-panel,
  .mwl-card,
  .mwl-step-card,
  .mwl-highlight__content,
  .mwl-question-box,
  .mwl-final-box {
    padding: 22px;
  }

  .mwl-highlight h2,
  .mwl-question-box h2,
  .mwl-final-box h2 {
    font-size: 28px;
  }
}

@media (max-width: 420px) {
  .mwl-hero h1 {
    font-size: 30px;
  }

  .mwl-brand-grid {
    grid-template-columns: 1fr;
  }
}

/* MIDA landing final overrides */

/* Remove test outline */
.mwl-page {
  outline: none !important;
  border: none !important;
}

/* Hero image */
.mwl-hero__image {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.mwl-hero__image img {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
}

/* Custom check list markers */
.mwl-page .mwl-check-list {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.mwl-page .mwl-check-list li {
  position: relative !important;
  margin: 0 0 10px !important;
  padding-left: 30px !important;
  list-style: none !important;
}

.mwl-page .mwl-check-list li::marker {
  content: "" !important;
  display: none !important;
  font-size: 0 !important;
}

.mwl-page .mwl-check-list li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 4px !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: #f3b51b !important;
}

.mwl-page .mwl-check-list li::after {
  content: "" !important;
  position: absolute !important;
  left: 6px !important;
  top: 8px !important;
  width: 5px !important;
  height: 9px !important;
  border-right: 2px solid #111827 !important;
  border-bottom: 2px solid #111827 !important;
  transform: rotate(45deg) !important;
}

/* Primary CTA color fix only */
.mwl-page a.mwl-btn-primary,
.mwl-page a.mwl-btn-primary:link,
.mwl-page a.mwl-btn-primary:visited {
  color: #111827 !important;
  background: #f3b51b !important;
  background-color: #f3b51b !important;
  background-image: none !important;
  border-color: #f3b51b !important;
}

.mwl-page a.mwl-btn-primary:hover,
.mwl-page a.mwl-btn-primary:focus {
  color: #111827 !important;
  background: #ffd45c !important;
  background-color: #ffd45c !important;
  background-image: none !important;
  border-color: #ffd45c !important;
  text-decoration: none !important;
}

/* MIDA landing stable section backgrounds */

.mwl-page .mwl-account {
  background: #ffffff !important;
}

.mwl-page .mwl-catalog {
  background: #f5f7fb !important;
}

.mwl-page .mwl-brands {
  background: #ffffff !important;
}

.mwl-page .mwl-audience {
  background: #f5f7fb !important;
}

.mwl-page .mwl-advantages {
  background:
    radial-gradient(circle at 10% 20%, rgba(243, 181, 27, 0.12), transparent 28%),
    linear-gradient(135deg, #111827 0%, #172033 48%, #1e3b68 100%) !important;
}

.mwl-page .mwl-steps {
  background: #ffffff !important;
}

.mwl-page .mwl-order {
  background: #f5f7fb !important;
}

.mwl-page .mwl-confirmation {
  background: #ffffff !important;
}

.mwl-page .mwl-delivery-payment {
  background: #f5f7fb !important;
}

.mwl-page .mwl-docs {
  background: #ffffff !important;
}

.mwl-page .mwl-faq {
  background: #f5f7fb !important;
}

.mwl-page .mwl-questions {
  background: #ffffff !important;
}

.mwl-page .mwl-final {
  background:
    radial-gradient(circle at 80% 20%, rgba(243, 181, 27, 0.18), transparent 26%),
    linear-gradient(135deg, #111827 0%, #1b2c49 100%) !important;
}

/* Remove test outline */
.mwl-page {
  outline: none !important;
  border: none !important;
}

/* Custom check list markers */
.mwl-page .mwl-check-list {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.mwl-page .mwl-check-list li {
  position: relative !important;
  margin: 0 0 10px !important;
  padding-left: 30px !important;
  list-style: none !important;
}

.mwl-page .mwl-check-list li::marker {
  content: "" !important;
  display: none !important;
  font-size: 0 !important;
}

.mwl-page .mwl-check-list li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 4px !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: #f3b51b !important;
}

.mwl-page .mwl-check-list li::after {
  content: "" !important;
  position: absolute !important;
  left: 6px !important;
  top: 8px !important;
  width: 5px !important;
  height: 9px !important;
  border-right: 2px solid #111827 !important;
  border-bottom: 2px solid #111827 !important;
  transform: rotate(45deg) !important;
}

/* Primary CTA color fix only */
.mwl-page a.mwl-btn-primary,
.mwl-page a.mwl-btn-primary:link,
.mwl-page a.mwl-btn-primary:visited {
  color: #111827 !important;
  background: #f3b51b !important;
  background-color: #f3b51b !important;
  background-image: none !important;
  border-color: #f3b51b !important;
}

.mwl-page a.mwl-btn-primary:hover,
.mwl-page a.mwl-btn-primary:focus {
  color: #111827 !important;
  background: #ffd45c !important;
  background-color: #ffd45c !important;
  background-image: none !important;
  border-color: #ffd45c !important;
  text-decoration: none !important;
}

/* Secondary button for light sections */
.mwl-page a.mwl-btn-secondary-light,
.mwl-page a.mwl-btn-secondary-light:link,
.mwl-page a.mwl-btn-secondary-light:visited {
  color: #111827 !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  border: 1px solid rgba(17, 24, 39, 0.18) !important;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06) !important;
}

.mwl-page a.mwl-btn-secondary-light:hover,
.mwl-page a.mwl-btn-secondary-light:focus {
  color: #111827 !important;
  background: #f5f7fb !important;
  background-color: #f5f7fb !important;
  background-image: none !important;
  border-color: rgba(17, 24, 39, 0.32) !important;
  text-decoration: none !important;
}

/* Contact block */
.mwl-page .mwl-contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.mwl-page .mwl-contact-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: #f5f7fb;
  border: 1px solid rgba(17, 24, 39, 0.1);
}

.mwl-page .mwl-contact-item span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #667085;
}

.mwl-page .mwl-contact-item a {
  color: #111827 !important;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 850;
  text-decoration: none !important;
}

.mwl-page .mwl-contact-item a:hover,
.mwl-page .mwl-contact-item a:focus {
  color: #f3b51b !important;
  text-decoration: none !important;
}

.mwl-page .mwl-question-box__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

@media (max-width: 767px) {
  .mwl-page .mwl-contact-list {
    grid-template-columns: 1fr;
  }
}

/* =========================
   ADVANTAGES: premium dark pattern + MIDA GROUP watermark
   ========================= */

.mwl-page .mwl-advantages {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 181, 27, 0.12), transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(255, 255, 255, 0.06), transparent 32%),
    linear-gradient(135deg, #111827 0%, #172033 48%, #1e3b68 100%) !important;
}

/* тонкая технологичная сетка */
.mwl-page .mwl-advantages::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
}

/* крупный фирменный watermark */
.mwl-page .mwl-advantages::after {
  content: "MIDA GROUP";
  position: absolute;
  right: -42px;
  bottom: 18px;
  font-size: 108px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.032);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

/* контент поверх паттерна */
.mwl-page .mwl-advantages .mwl-container {
  position: relative;
  z-index: 1;
}

/* карточки чуть глубже на новом фоне */
.mwl-page .mwl-advantages .mwl-card-dark {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12) !important;
  backdrop-filter: blur(2px);
}

/* мобильная адаптация watermark */
@media (max-width: 767px) {
  .mwl-page .mwl-advantages::before {
    background-size: 34px 34px;
    opacity: 0.34;
  }

  .mwl-page .mwl-advantages::after {
    right: -24px;
    bottom: 14px;
    font-size: 58px;
    color: rgba(255, 255, 255, 0.026);
  }
}

/* =========================
   ADVANTAGES: visible grid test + watermark
   ставить в самый конец CSS
   ========================= */

.mwl-page .mwl-advantages {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 181, 27, 0.15), transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(135deg, #111827 0%, #172033 48%, #1e3b68 100%) !important;
}

.mwl-page .mwl-advantages::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px) !important;
background-size: 38px 38px !important;
opacity: 0.48 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.mwl-page .mwl-advantages::after {
  content: "MIDA GROUP" !important;
  position: absolute !important;
  right: -30px !important;
  bottom: 46px !important;
  font-size: 116px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: -0.05em !important;
  color: rgba(255, 255, 255, 0.06) !important;
  pointer-events: none !important;
  z-index: 0 !important;
  white-space: nowrap !important;
}

.mwl-page .mwl-advantages .mwl-container {
  position: relative !important;
  z-index: 1 !important;
}

.mwl-page .mwl-advantages .mwl-card-dark {
  background: rgba(255, 255, 255, 0.085) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14) !important;
  backdrop-filter: blur(2px);
}

/* =========================
   FINAL CTA: real MIDA logo watermark
   ========================= */

.mwl-page .mwl-final {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 82% 18%, rgba(243, 181, 27, 0.18), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.07), transparent 34%),
    linear-gradient(135deg, #111827 0%, #1b2c49 100%) !important;
}

.mwl-page .mwl-final::before {
  content: "" !important;
  position: absolute !important;
  right: -34px !important;
  bottom: 24px !important;
  width: 360px !important;
  height: 130px !important;
  background: url('/image/catalog/landing/wholesale/mida-logo-white.svg') no-repeat center center !important;
  background-size: contain !important;
  opacity: 0.07 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.mwl-page .mwl-final .mwl-container {
  position: relative !important;
  z-index: 1 !important;
}

.mwl-page .mwl-final-box {
  position: relative !important;
  z-index: 2 !important;
  backdrop-filter: blur(3px);
}

@media (max-width: 767px) {
  .mwl-page .mwl-final::before {
    right: -22px !important;
    bottom: 18px !important;
    width: 220px !important;
    height: 80px !important;
    opacity: 0.055 !important;
  }
}

/* =========================
   HERO: image info badge
   ========================= */

.mwl-page .mwl-hero__image {
  position: relative !important;
}

.mwl-page .mwl-hero-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 310px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  color: #ffffff;
}

.mwl-page .mwl-hero-badge__label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f3b51b;
}

.mwl-page .mwl-hero-badge strong {
  display: block;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
  color: #ffffff;
}

@media (max-width: 767px) {
  .mwl-page .mwl-hero-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    padding: 14px 15px;
    border-radius: 14px;
  }

  .mwl-page .mwl-hero-badge strong {
    font-size: 14px;
  }
}

/* =========================
   CATALOG CATEGORIES: static aligned list
   ========================= */

.mwl-page .mwl-category-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 18px 28px !important;
  max-width: 1180px !important;
  margin: 38px auto 0 !important;
  padding: 0 !important;
}

.mwl-page .mwl-category-card {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 8px minmax(0, 1fr) !important;
  column-gap: 12px !important;
  align-items: start !important;
  min-height: auto !important;
  padding: 0 !important;
  text-align: left !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #111827 !important;
  font-size: 17px !important;
  line-height: 1.28 !important;
  font-weight: 850 !important;
  transition: none !important;
  transform: none !important;
  cursor: default !important;
}

.mwl-page .mwl-category-card::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 7px !important;
  height: 7px !important;
  margin-top: 0.45em !important;
  border-radius: 50% !important;
  background: #f3b51b !important;
  transform: none !important;
}

.mwl-page .mwl-category-card::after {
  content: none !important;
  display: none !important;
}

.mwl-page .mwl-category-card:hover,
.mwl-page .mwl-category-card:focus {
  transform: none !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

@media (max-width: 1199px) {
  .mwl-page .mwl-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    max-width: 760px !important;
  }
}

@media (max-width: 767px) {
  .mwl-page .mwl-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 18px !important;
    max-width: none !important;
    margin-top: 28px !important;
  }

  .mwl-page .mwl-category-card {
    font-size: 15px !important;
  }
}

@media (max-width: 420px) {
  .mwl-page .mwl-category-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =========================
   ACCESS STEPS: process line
   ========================= */

@media (min-width: 992px) {
  .mwl-page .mwl-steps .mwl-step-grid {
    position: relative !important;
  }

  .mwl-page .mwl-steps .mwl-step-grid::before {
    content: "" !important;
    position: absolute !important;
    top: 43px !important;
    left: 9% !important;
    right: 9% !important;
    height: 2px !important;
    background: linear-gradient(
      90deg,
      rgba(243, 181, 27, 0),
      rgba(243, 181, 27, 0.55),
      rgba(243, 181, 27, 0)
    ) !important;
    z-index: 0 !important;
    pointer-events: none !important;
  }

  .mwl-page .mwl-steps .mwl-step-card {
    position: relative !important;
    z-index: 1 !important;
  }

  .mwl-page .mwl-steps .mwl-step-number {
    position: relative !important;
    z-index: 2 !important;
    box-shadow: 0 0 0 8px #ffffff !important;
  }
}

/* =========================
   ORDER STEPS: process line
   ========================= */

@media (min-width: 992px) {
  .mwl-page .mwl-order .mwl-step-grid {
    position: relative !important;
  }

  .mwl-page .mwl-order .mwl-step-grid::before {
    content: "" !important;
    position: absolute !important;
    top: 43px !important;
    left: 9% !important;
    right: 9% !important;
    height: 2px !important;
    background: linear-gradient(
      90deg,
      rgba(17, 24, 39, 0),
      rgba(17, 24, 39, 0.18),
      rgba(17, 24, 39, 0)
    ) !important;
    z-index: 0 !important;
    pointer-events: none !important;
  }

  .mwl-page .mwl-order .mwl-step-card {
    position: relative !important;
    z-index: 1 !important;
  }

  .mwl-page .mwl-order .mwl-step-number {
    position: relative !important;
    z-index: 2 !important;
    box-shadow: 0 0 0 8px #ffffff !important;
  }
}

/* =========================
   CONFIRMATION: important rule block
   ========================= */

.mwl-page .mwl-confirmation {
  background:
    radial-gradient(circle at 16% 18%, rgba(243, 181, 27, 0.12), transparent 30%),
    #ffffff !important;
}

.mwl-page .mwl-confirmation .mwl-highlight {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 30px !important;
  background:
    linear-gradient(135deg, rgba(255, 245, 210, 0.96), rgba(255, 255, 255, 0.92)),
    #ffffff !important;
  border: 1px solid rgba(243, 181, 27, 0.36) !important;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.08) !important;
}

.mwl-page .mwl-confirmation .mwl-highlight::before {
  content: "!";
  position: absolute;
  right: 34px;
  top: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3b51b;
  color: #111827;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(243, 181, 27, 0.28);
  pointer-events: none;
}

.mwl-page .mwl-confirmation .mwl-highlight::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(243, 181, 27, 0.12);
  pointer-events: none;
}

.mwl-page .mwl-confirmation .mwl-highlight__content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.mwl-page .mwl-confirmation .mwl-number-list {
  margin: 22px 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
  counter-reset: confirmation-counter;
}

.mwl-page .mwl-confirmation .mwl-number-list li {
  position: relative;
  counter-increment: confirmation-counter;
  margin: 0 0 12px !important;
  padding-left: 42px !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
}

.mwl-page .mwl-confirmation .mwl-number-list li::before {
  content: counter(confirmation-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #111827;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.mwl-page .mwl-confirmation .mwl-warning {
  margin-top: 22px !important;
  padding: 18px 20px !important;
  border-radius: 18px !important;
  background: rgba(17, 24, 39, 0.08) !important;
  border-left: 5px solid #f3b51b !important;
  color: #111827 !important;
  font-weight: 850 !important;
  box-shadow: none !important;
}

@media (max-width: 767px) {
  .mwl-page .mwl-confirmation .mwl-highlight::before {
    right: 18px;
    top: 18px;
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .mwl-page .mwl-confirmation .mwl-highlight__content {
    padding-top: 26px;
  }

  .mwl-page .mwl-confirmation .mwl-number-list li {
    padding-left: 38px !important;
  }
}