/** Shopify CDN: Minification failed

Line 843:12 Expected ":"
Line 843:19 Expected ":"

**/
/* MDM Digital Group - custom design system (1:1 from design.html) */
:root {
  --mdm-bg-body: #ffffff;
  --mdm-bg-alt: #f3f7fa;
  --mdm-bg-dark-navy: #0b1e36;
  --mdm-bg-card-stat: #f0f4f8;
  --mdm-text-main: #0a192f;
  --mdm-text-muted: #64748b;
  --mdm-border-light: #e2e8f0;
  --mdm-accent-blue: #0c5490;
  --mdm-accent-blue-hover: #025aa5;  
}

.mdm-section * ,
.mdm-section *::before,
.mdm-section *::after {
  box-sizing: border-box;
}

.mdm-section {  
  color: var(--mdm-text-main);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

.mdm-section a {
  color: #0c5490;
  text-decoration: none;
  text-align:center;
  display: flex;
    align-items: center;
    gap: 5px;
}

.mdm-section ul {
  margin: 0;
  padding: 0;
}

.mdm-section p {
  margin: 0;
}
a.mdm-category-card span {
    display: flex;
    align-items: center;
    gap: 5px;
}
section.mdm-section.mdm-dark-section a {
    width: fit-content;
}
ul.mdm-footer-links a {
    color: #fff;
}
ul.mdm-footer-links p {
    color: #fff;
}
.mdm-container {
  
  margin: 0 auto;
  max-width: 1760px;
  padding: 0 6.4rem;
}

/* 1. TOP BAR */
.mdm-top-bar {
  background-color: var(--mdm-bg-dark-navy);
  color: #fff;
  font-size: 11.6px;
  font-weight: 500;
  padding: 7.2px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mdm-top-bar .mdm-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}

/* 2. HEADER */
.mdm-site-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--mdm-border-light);
}

.mdm-header-main {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.mdm-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18.4px;
  color: var(--mdm-bg-dark-navy);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.mdm-logo img {
  max-height: 72px;
  width: auto;
  display: block;
}

.mdm-logo-badge {
  /* background-color: #e0f2fe; */
  color: var(--mdm-accent-blue);
  font-size: 10.4px;
  padding: 3.2px 6.4px;
  border-radius: 4px;
  font-weight: 700;
}

.mdm-header-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}

.mdm-header-search input {
  width: 100%;
  height: 42px;
  padding: 0 88px 0 20px;
  border: 1px solid var(--mdm-border-light);
  border-radius: 9999px;
  font-size: 13.2px;
  outline: none;
  font-family: inherit;
}

.mdm-header-search input:focus {
  border-color: var(--mdm-accent-blue);
}

.mdm-header-search button {
  position: absolute;
  right: 3px;
  top: 3px;
  height: 36px;
  padding: 0 20px;
  background-color: var(--mdm-accent-blue);
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 12.4px;
  cursor: pointer;
  font-family: inherit;
}

.mdm-header-search button:hover {
  background-color: var(--mdm-accent-blue-hover);
}

.mdm-btn-trade-top {
  background-color: #00478d;
  color: #ffffff;
  height: 38px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  font-size: 12.4px;
  font-weight: 600;
  white-space: nowrap;
}

.mdm-btn-trade-top:hover {
  background-color: #142c4c;
}

/* NAVIGATION */
.mdm-nav-bar {  
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mdm-nav-list {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 32px;
  list-style: none;
}

.mdm-nav-list a {
  font-size: 18px;
  color: var(--mdm-text-muted);
  font-weight: 500;
}

.mdm-nav-list a:hover {
  color: var(--mdm-accent-blue);
}

/* 3. HERO */
.mdm-hero {
  background: linear-gradient(180deg, #f0f7fc 0%, #ffffff 100%);
  padding: 80px 0 56px;
  text-align: center;
}

.mdm-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--mdm-bg-dark-navy);
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 16px !important;
    max-width: 764px;
    margin: 0 auto;
}

.mdm-hero p {
  max-width: 660px;
  margin: 0 auto 36px;
  color: var(--mdm-text-muted);
  font-size: 14.8px;
  line-height: 1.6;
}

.mdm-hero-search-wrap {
  max-width: 540px;
  margin: 0 auto 24px;
  position: relative;
}

.mdm-hero-search-wrap input {
  width: 100%;
  height: 50px;
  padding: 0 104px 0 20px;
  border: 1px solid var(--mdm-border-light);
  border-radius: 9999px;
  font-size: 18px;
  outline: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  font-family: inherit;
}

.mdm-hero-search-wrap button {
  position: absolute;
  right: 4px;
  top: 4px;
  height: 42px;
  padding: 0 24px;
  background-color: var(--mdm-accent-blue);
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 13.2px;
  cursor: pointer;
  font-family: inherit;
}

.mdm-hero-search-wrap button:hover {
  background-color: var(--mdm-accent-blue-hover);
}

.mdm-hero-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.4px;
}

.mdm-tag-pill {
  background: #ffffff;
  border: 1px solid var(--mdm-border-light);
  padding: 3.2px 10.4px;
  border-radius: 9999px;
  color: var(--mdm-text-muted);
  font-size: 11.6px;
}

.mdm-tag-pill:hover {
  color: var(--mdm-accent-blue);
  border-color: var(--mdm-accent-blue);
}

/* 4. FEATURES BAR */
.mdm-features-bar {
  padding: 36px 0;
  border-top: 1px solid var(--mdm-border-light);
  border-bottom: 1px solid var(--mdm-border-light);
  background-color: #ffffff;
}

.mdm-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* .mdm-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
} */

.mdm-feature-num {
  color: var(--mdm-accent-blue);
  font-weight: 700;
  font-size: 13.6px;
  margin-top: 1.6px;
}

.mdm-feature-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 3.2px;
    margin-top: 5px;
}

.mdm-feature-text p {
  font-size: 18px;
  color: var(--mdm-text-muted);
  line-height: 1.4;
}

/* SECTION LAYOUT HELPERS */
/* .mdm-section-padding {
  padding: 64px 0;
} */
.mdm-section-padding
{
  padding-bottom:64px;
}
.mdm-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.mdm-section-header .mdm-sub {
  font-size: 11.6px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--mdm-accent-blue);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 5.6px;
}

.mdm-section-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--mdm-bg-dark-navy);
  letter-spacing: -0.02em;
  margin:0;
}

.mdm-link-arrow {
  font-size: 12.8px;
  font-weight: 600;
  color: var(--mdm-accent-blue);
}

.mdm-link-arrow:hover {
  color: var(--mdm-accent-blue-hover);
}

.mdm-bg-alt {
  background-color: var(--mdm-bg-alt);
}

/* 5. BROWSE BY CATEGORY */
.mdm-categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.mdm-category-card {
    border: 1px solid var(--mdm-border-light);
    border-radius: 8px;
    padding: 0px 16px;
    background: #fff;
    height: 100px;
    display: flex;
    flex-direction: column;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.mdm-category-card:hover {
  border-color: var(--mdm-accent-blue);
  box-shadow: 0 4px 16px rgba(2, 117, 216, 0.08);
}

.mdm-category-card h3 {
  font-size: 18px;
  font-weight: 700;
}

.mdm-category-card span {
  font-size: 14px;
  color: var(--mdm-accent-blue);
  font-weight: 600;
}

/* 6. FEATURED PRODUCTS */
.mdm-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mdm-product-card {
  border: 1px solid var(--mdm-border-light);
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.mdm-product-card:hover {
  border-color: var(--mdm-accent-blue);
  box-shadow: 0 4px 16px rgba(2, 117, 216, 0.08);
}

.mdm-product-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mdm-product-img img,
.mdm-product-img svg {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.mdm-product-brand {
  font-size: 10.8px;
  text-transform: uppercase;
  color: var(--mdm-text-muted);
  font-weight: 700;
  margin-bottom: 5.6px;
}

.mdm-product-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--mdm-text-main);
  margin-bottom: 20px;
  line-height: 1.4;
  flex-grow: 1;
}

.mdm-product-lock-link {
  font-size: 12px;
  color: var(--mdm-accent-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5.6px;
}

.mdm-product-lock-link svg {
  flex-shrink: 0;
}

/* 7. BRANDS WE SUPPLY */
.mdm-brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.mdm-brand-box {
  border: 1px solid var(--mdm-border-light);
  border-radius: 8px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #475569;
  background: #ffffff;
  text-align: center;
  padding: 8px;
}

.mdm-brand-box img {
  max-width: 100%;
  max-height: 32px;
  object-fit: contain;
}

/* 8. FAQ ACCORDION */
.mdm-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* max-width: 960px; */
  margin: 0 auto;
}

.mdm-faq-item {
  border: 1px solid var(--mdm-border-light);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.mdm-faq-item summary {
  padding: 18.4px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
}

.mdm-faq-item summary::-webkit-details-marker {
  display: none;
}

.mdm-faq-item .mdm-faq-icon {
  color: var(--mdm-accent-blue);
  font-size: 17.6px;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.mdm-faq-item[open] .mdm-faq-icon {
  transform: rotate(45deg);
}

.mdm-faq-item .mdm-faq-answer {
  padding: 0 24px 20px;
  font-size: 13.6px;
  font-weight: 400;
  color: var(--mdm-text-muted);
  line-height: 1.6;
}

/* 9. DARK LOOKING FOR PRODUCTS SECTION */
.mdm-dark-section {
  background-color: var(--mdm-bg-dark-navy);
  color: #ffffff;
  padding: 80px 0;
}

.mdm-dark-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.mdm-dark-text h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
    max-width: 440px;
}

.mdm-dark-text p {
  color: #fff;
  font-size: 14.8px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.mdm-btn-white {
  background-color: #ffffff;
  color: var(--mdm-bg-dark-navy);
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 13.2px;
  display: inline-block;
}

.mdm-btn-white:hover {
  background-color: #e0f2fe;
}

.mdm-dark-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mdm-step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.mdm-step-circle {
  width: 32px;
  height: 32px;
  background-color: var(--mdm-accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.2px;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}

.mdm-step-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 1px;
}

.mdm-step-info p {
  font-size: 13.2px;
  color: #fff;
}

/* 10. BUILT ON TRUST & STATS */
.mdm-stats-grid {
  display: grid;
  grid-template-columns: 2.8fr repeat(3, 1fr);
  gap: 34px;
  align-items: center;
}

.mdm-stats-info h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--mdm-bg-dark-navy);
  margin: 10px;
  line-height: 1.2;
}

.mdm-stats-info p {
  font-size: 18px;
  color: var(--mdm-text-muted);
  margin-bottom: 16px;
  line-height: 1.65;
}

.mdm-stats-info .mdm-link-arrow {
  display: inline-block;
  margin-top: 8px;
}

.mdm-stat-card {
  background-color: var(--mdm-bg-card-stat);
  border-radius: 8px;
  padding: 28px 20px;
  height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mdm-stat-card h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--mdm-accent-blue);
  margin-bottom: 6.4px;
}

.mdm-stat-card p {
  font-size: 12px;
  color: var(--mdm-text-muted);
  line-height: 1.35;
}

/* 11. BLUE BANNER CTA */
.mdm-blue-banner {
    background-color: var(--mdm-accent-blue);
    color: #fff;
    border-radius: 10px;
    padding: 0px 20px 46px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.mdm-blue-banner h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 6.4px;
    color: #fff;
    max-width: 640px;
}

.mdm-blue-banner p {
  font-size: 18px;
  color: #e0f2fe;
}

.mdm-btn-banner {
  background-color: #ffffff;
  color: var(--mdm-accent-blue);
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 13.2px;
  white-space: nowrap;
  display: inline-block;
}

.mdm-btn-banner:hover {
  background-color: #e0f2fe;
}

/* 12. NEWSLETTER SECTION */
.mdm-newsletter-section {
  text-align: center;
  padding: 72px 0;
  background-color: var(--mdm-bg-alt);
}

.mdm-newsletter-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--mdm-bg-dark-navy);
  margin-bottom: 8px;
}

.mdm-newsletter-section p {
  font-size: 18px;
  color: var(--mdm-text-muted);
  margin-bottom: 28px;
}

.mdm-newsletter-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mdm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mdm-newsletter-form input {
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--mdm-border-light);
  border-radius: 6px;
  font-size: 13.6px;
  outline: none;
  font-family: inherit;
  width: 100%;
}

.mdm-newsletter-form input:focus {
  border-color: var(--mdm-accent-blue);
}

.mdm-newsletter-form button {
  height: 44px;
  background-color: var(--mdm-accent-blue);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13.6px;
  cursor: pointer;
  font-family: inherit;
}

.mdm-newsletter-form button:hover {
  background-color: var(--mdm-accent-blue-hover);
}

.mdm-newsletter-success {
  max-width: 520px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 600;
  color: var(--mdm-accent-blue);
  background: #ffffff;
  border: 1px solid var(--mdm-border-light);
  border-radius: 6px;
  padding: 16px;
}

/* 13a. TRADE ENQUIRY FORM */
.mdm-breadcrumbs {
  font-size: 12px;
  color: var(--mdm-text-muted);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mdm-breadcrumbs a {
  color: var(--mdm-text-muted);
}

.mdm-breadcrumbs a:hover {
  color: var(--mdm-accent-blue);
}

.mdm-trade-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--mdm-bg-dark-navy);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  text-align;center;
}

.mdm-trade-subtitle {
  font-size: 14.4px;
  color: var(--mdm-text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.mdm-trade-grid {
max-width:550px;
margin: 0 auto;
}

.mdm-trade-form-card,
.mdm-sidebar-card,
.mdm-form-success {
  background-color: var(--mdm-bg-alt);
  border: 1px solid var(--mdm-border-light);
  border-radius: 12px;
}

.mdm-trade-form-card,
.mdm-form-success {
  padding: 40px;
}

.mdm-form-success {
  text-align: center;
}

.mdm-form-success h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--mdm-bg-dark-navy);
  margin-bottom: 8px;
}

.mdm-form-success p {
  font-size: 13.6px;
  color: var(--mdm-text-muted);
}

.mdm-form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 13px;
}

.mdm-form-error p {
  font-weight: 700;
  margin-bottom: 8px;
}

.mdm-form-error ul {
  padding-left: 18px;
  list-style: disc;
}

.mdm-form-error li {
  margin-bottom: 4px;
}

.mdm-form-group-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--mdm-bg-dark-navy);
text-align:center;
}

.mdm-form-group-title:first-child {
  margin-top: 0;
}


.mdm-field label {
  font-size: 15px;
  font-weight: 600;
  color: var(--mdm-text-main);
}

.mdm-field label .mdm-optional {
  color: var(--mdm-text-muted);
  font-weight: 400;
}

.mdm-field input,
.mdm-field select,
.mdm-field textarea {
  width: 100%;
  height: 42px;
  padding: 0 13.6px;
  background: #ffffff;
  border: 1px solid var(--mdm-border-light);
  border-radius: 6px;
  font-size: 13.6px;
  font-family: inherit;
  color: var(--mdm-text-main);
  outline: none;
}

.mdm-field input:focus,
.mdm-field select:focus,
.mdm-field textarea:focus {
  border-color: var(--mdm-accent-blue);
}

.mdm-field textarea {
  height: 110px;
  padding: 12px 13.6px;
  resize: vertical;
}

.mdm-phone-input-wrap {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
}

.mdm-submit-btn {
  width: 100%;
  height: 48px;
  background-color: var(--mdm-accent-blue);
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 14.4px;
  cursor: pointer;
  margin-top: 32px;
  font-family: inherit;
}

.mdm-submit-btn:hover {
  background-color: var(--mdm-accent-blue-hover);
}

.mdm-trade-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mdm-sidebar-card {
  padding: 24px;
}

.mdm-sidebar-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--mdm-bg-dark-navy);
  margin-bottom: 20px;
}

.mdm-steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mdm-step-item-sm {
  display: flex;
  align-items: flex-start;
  gap: 13.6px;
}

.mdm-step-num {
  width: 24px;
  height: 24px;
  background-color: var(--mdm-accent-blue);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.mdm-step-content-sm h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--mdm-bg-dark-navy);
  margin-bottom: 0;
}

.mdm-step-content-sm p {
  font-size: 11.6px;
  color: var(--mdm-text-muted);
  line-height: 1.4;
}

.mdm-talk-card p {
  font-size: 18px;
  color: var(--mdm-text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.mdm-talk-card a {
  font-size: 12.4px;
  font-weight: 700;
  color: var(--mdm-accent-blue);
}

/* 13. FOOTER */
.mdm-site-footer {
  background-color: var(--mdm-bg-dark-navy);
  color: #fff;
  padding: 72px 0 32px;
  font-size: 12.8px;
}

.mdm-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 64px;
  margin-bottom: 64px;
}

.mdm-footer-col h4 {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.mdm-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10.4px;
}

.mdm-footer-links a:hover {
  color: #ffffff;
}

.mdm-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
}

.mdm-footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.mdm-footer-bottom-links a:hover {
  color: #ffffff;
}

/* WHO WE SERVE */
.mdm-wws-intro {
  max-width: 86rem;
  margin-bottom: 48px;
}

.mdm-wws-eyebrow {
  font-size: 11.6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mdm-text-muted);
  display: block;
  margin-bottom: 14px;
}

.mdm-wws-intro h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--mdm-text-main);
  line-height: 1.15;
  margin: 0 0 16px;
}

.mdm-wws-intro p {    
    max-width: 86rem;
    font-size: 20px;
    line-height: 1.4;
    color: #000;
    margin: 0 0 36px;
    letter-spacing: -0.03em;
}

.mdm-wws-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.mdm-wws-image {
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--mdm-bg-alt);
  min-height: 320px;
}

.mdm-wws-image img,
.mdm-wws-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mdm-wws-content h3 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--mdm-text-main);
  margin: 0 0 16px;
  line-height: 1.2;
}

.mdm-wws-content > p {
  font-size: 20px;
    line-height: 1.4;
    color: #000;
    margin: 0 0 36px;
    letter-spacing: -0.03em;
}

.mdm-business-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 2.4rem;
}

.mdm-business-type h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--mdm-text-main);
  margin: 0 0 .6rem;
}

.mdm-business-type p {
  font-size: 16px;
  line-height: 1.4;
  color: var(--mdm-text-muted);
  margin: 0;
  letter-spacing: -0.03em;
}

/* Mobile & tablet responsive rules live in assets/mdm-mobile.css */
.mdm-pdp-btn-primary, .mdm-pdp-btn-secondary {
    text-decoration: none !important;
}
@media screen and (min-width: 787px) {
.mobile_show
{
  display:none;
}
}
.mdm-container-luxury
{
  max-width: 1760px;
    padding: 0 6.4rem;
}
.mdm-trade-form-card {
    margin-top: 20px;
}
section#mdm-tsb-template--30739996541262__mdm-brands {
    margin-top: 25px;
}
.mdm-featured-products-section .mdm-sub{
    margin-top: 20px;
}
.mdm-categories-section .mdm-sub
{
  margin-top: 20px;
}
 @media only screen and (min-width: 1000px) and (max-width: 1500px)  {
.mdm-as-card--featured .mdm-as-number {
    font-size: 110px !important;
}
 }