@charset "utf-8";
@import url('https://fonts.cdnfonts.com/css/ethnocentric');

:root{
  --primary:#990099;
  --accent:#c13bc1;
  --mora:#990099;
  --tech:#000000;
  --text:#1b1b1b;
  --muted:#5a4b63;
  --bg:#f7f0fa;
  --card:#ffffff;
  --border:#ead8f2;
  --shadow:0 16px 45px rgba(153,0,153,0.14);
}

*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:'Poppins','Manrope',system-ui,-apple-system,sans-serif;
  background:linear-gradient(180deg,#f9f2fb 0%,#fff8ff 100%);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.eyebrow{
  font-size:0.9rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--primary);
  font-weight:700;
  margin-bottom:8px;
}

.section-header{max-width:960px;margin:0 auto 18px;text-align:center}
.section-title{
  font-size:2.4rem;
  font-weight:700;
  color:var(--text);
}

/* Nav */
.top-nav{
  position:sticky;
  top:0;left:0;width:100%;
  background:#fff;
  border-bottom:1px solid var(--border);
  box-shadow:0 6px 20px rgba(0,0,0,0.04);
  z-index:1000;
  height:10vh;
  min-height:90px;
}
.nav-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
}
.brand-mark{display:none;}
.brand-name{
  font-family:'Ethnocentric Rg','Ethnocentric',sans-serif;
  font-size:2.2rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-weight:700;
}
.brand-mora{color:var(--mora);}
.brand-tech{color:var(--tech);}

.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:32px;
}
.nav-item{
  display:block;
  font-size:18px;
  font-weight:700;
  color:#1f2430;
  position:relative;
  padding:15px 4px;
  line-height:30px;
  transition:color .2s ease;
}
.nav-item::after{
  content:'';
  position:absolute;
  left:0;bottom:-6px;
  width:100%;height:3px;
  background:var(--accent);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .2s ease;
}
.nav-item:hover,.nav-item.active{color:var(--accent);}
.nav-item:hover::after,.nav-item.active::after{transform:scaleX(1);}

.nav-actions{display:flex;align-items:center;gap:10px;}
.menu-toggle{display:none;flex-direction:column;gap:5px;border:none;background:none;cursor:pointer;padding:6px;}
.menu-toggle span{width:24px;height:2px;background:#1f2430;transition:.2s ease;}
.menu-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.menu-toggle.active span:nth-child(2){opacity:0;}
.menu-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* Hero */
.site-hero{
  padding:0;
  background:#fff;
  overflow:hidden;
}
.cert-strip{
  display:none;
}
.cert-track{display:flex;align-items:center;gap:24px;overflow:auto;scrollbar-width:none;}
.cert-track::-webkit-scrollbar{display:none;}
.cert-track img{height:38px;filter:grayscale(0.1);opacity:0.9;}

.hero-grid{
  max-width:1200px;
  margin:0 auto;
  padding:0 14px;
}
.hero-slider.full{
  position:relative;
  width:100%;
  max-width:100%;
  margin:0;
  aspect-ratio:1920/850;
  min-height:320px;
  max-height:82vh;
  border-radius:0;
  overflow:hidden;
  box-shadow:none;
  background:linear-gradient(180deg,#ffffff 0%, #f7f0fa 100%);
  isolation:isolate;
  touch-action:pan-y;
}
.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .6s ease;
  background:transparent;
}

.hero-slide::before{
  content:'';
  position:absolute;
  inset:-8%;
  background-image:var(--hero-bg);
  background-size:cover;
  background-position:center;
  filter:blur(16px);
  transform:scale(1.06);
  opacity:0.6;
  z-index:0;
}

.hero-slide img{
  position:relative;
  z-index:1;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
}
.hero-slide.active{opacity:1;position:absolute;}

.hero-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;height:42px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,0.9);
  box-shadow:0 8px 20px rgba(0,0,0,0.12);
  cursor:pointer;
  font-size:20px;
  color:var(--text);
  z-index:2;
}
.hero-nav.prev{left:12px;}
.hero-nav.next{right:12px;}
.hero-dots{
  position:absolute;
  bottom:18px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:12px;
  z-index:2;
}
.hero-dots button{
  width:42px;
  height:8px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,0.6);
  cursor:pointer;
}
.hero-dots button.active{
  background:var(--accent);
  width:52px;
}

.category-hero{
  max-width:1200px;
  margin:0 auto;
  padding:38px 16px 20px;
}
.category-hero-inner{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.category-lead{
  color:var(--muted);
  max-width:780px;
}
.category-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:6px;
}

/* About */
.about{
  max-width:1200px;
  margin:80px auto 60px;
  padding:0 16px;
}
.about-layout{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:30px;
  align-items:flex-start;
}
.about-text .section-title{
  text-align:left;
  margin-bottom:12px;
}
.about-paragraph{
  font-size:1rem;
  color:var(--muted);
  line-height:1.8;
  margin-bottom:12px;
  text-align:justify;
}
.about-mv-row{
  margin-top:26px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}
.about-mv-card{
  position:relative;
  background:linear-gradient(135deg,#ffffff 0%, #f8f0fb 100%);
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px;
  box-shadow:0 18px 40px rgba(153,0,153,0.08);
  overflow:hidden;
}
.about-mv-card::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:6px;
  background:linear-gradient(90deg,#a80aa8,#c13bc1,#ff5ec9);
}
.about-mv-title{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}
.about-mv-tag{
  font-size:0.78rem;
  letter-spacing:0.22em;
  text-transform:uppercase;
  font-weight:800;
  color:var(--primary);
  background:#f2e7f7;
  padding:6px 12px;
  border-radius:999px;
  border:1px solid #ead8f2;
}
.about-mv-line{
  flex:1;
  height:2px;
  background:linear-gradient(90deg,rgba(193,59,193,0.5),rgba(255,94,201,0.35));
  border-radius:999px;
}
.about-mv-card.alt{
  background:linear-gradient(135deg,#ffffff 0%, #f6f4ff 100%);
}
.about-mv-card.alt::before{
  background:linear-gradient(90deg,#8a6cff,#c13bc1,#ff5ec9);
}
.about-mv-card .about-paragraph{
  margin-bottom:0;
  text-align:left;
}
.about-cta{
  margin-top:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 20px;
  background:linear-gradient(135deg,#a80aa8,#c13bc1,#ff5ec9);
  color:#fff;
  border-radius:24px;
  font-weight:800;
  letter-spacing:0.04em;
  box-shadow:0 10px 28px rgba(153,0,153,0.25);
}
.about-video{
  display:flex;
  justify-content:flex-end;
}
.video-frame{
  width:100%;
  max-width:680px;
  aspect-ratio:1/1;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  background:#f7f1fa;
}
.video-frame video{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
}

/* Metrics */
.metrics-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
}
.metrics{
  max-width:1200px;
  margin:30px auto 0;
  padding:10px 16px 0;
}
.about-stats{
  padding-top:20px;
  grid-template-columns:repeat(4,minmax(200px,1fr));
}
.metric-card{
  background:transparent;
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px;
  box-shadow:0 12px 30px rgba(0,0,0,0.05);
  text-align:center;
}
.metric-value{
  display:block;
  font-size:2.2rem;
  font-weight:800;
  color:var(--accent);
}
.metric-label{
  color:var(--muted);
  font-weight:600;
}

/* Video */
.video{
  max-width:1200px;
  margin:0 auto;
  padding:0 16px 80px;
}
.video-wrap{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 16px 40px rgba(0,0,0,0.08);
}
.video-header{
  padding:16px 20px;
  border-bottom:1px solid var(--border);
}
.video-header h3{margin:0;color:var(--text);font-weight:700;}
.video-body{position:relative;}
.video-body video{width:100%;height:520px;object-fit:cover;background:#000;}
.video-unmute{
  position:absolute;
  right:14px;
  bottom:14px;
  border:none;
  background:rgba(15,79,191,0.9);
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
  font-weight:700;
}
.video-unmute.is-hidden{display:none;}

/* Suppliers */
.suppliers{
  max-width:1200px;
  margin:0 auto;
  padding:40px 16px 80px;
  position:relative;
}
.suppliers .section-title{
  color:var(--primary);
  text-transform:uppercase;
  letter-spacing:0.08em;
}
.suppliers-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:32px;
  margin:20px auto 0;
  max-width:1200px;
  flex-wrap:wrap;
  width:100%;
}
.logo-panel{
  background:transparent;
  border:none;
  border-radius:0;
  padding:10px 12px;
  box-shadow:none;
  overflow:hidden;
  position:relative;
  flex:0 1 68%;
  min-width:540px;
}
.logo-track{
  display:flex;
  align-items:center;
  gap:32px;
  animation:scrollLogos 18s linear infinite;
  width:max-content;
  will-change:transform;
}
.logo-track img{
  max-height:240px;
  width:auto;
  object-fit:contain;
  filter:none;
}
@keyframes scrollLogos{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
.suppliers-info{
  background:transparent;
  border:none;
  border-radius:0;
  padding:0 10px;
  box-shadow:none;
  flex:0 1 28%;
  min-width:280px;
}
.suppliers-info h3{
  color:#000;
  margin-bottom:16px;
  font-size:1.4rem;
}
.suppliers-info ul{
  list-style:disc;
  padding-left:18px;
  display:grid;
  gap:10px;
}
.suppliers-info li{
  color:#3e3348;
  font-weight:500;
}

/* Catalog */
.catalog{
  max-width:1200px;
  margin:0 auto;
  padding:0 16px 80px;
}
.catalog .section-title{
  color:var(--primary);
  text-transform:capitalize;
}
.catalog-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:26px;
  margin-top:12px;
}
.product-card{
  min-width:0;
  background:#faf3fd;
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  transition:transform .25s ease,box-shadow .25s ease,opacity .25s ease;
  opacity:0;
  transform:translateY(20px) scale(.98);
}
.product-card.show{
  opacity:1;
  transform:translateY(0) scale(1);
}
.product-card:hover{transform:translateY(-4px) scale(1.01);box-shadow:0 12px 28px rgba(0,0,0,0.08);}
.product-media{
  height:240px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-media img{
  width:95%;
  height:95%;
  object-fit:contain;
  transition:transform .25s ease;
}
.product-card:hover .product-media img{transform:scale(1.05);}
.product-body{padding:14px;text-align:center;}
.product-title{font-size:1.05rem;font-weight:700;margin-bottom:6px;}
.product-meta{color:var(--muted);font-size:1rem;min-height:44px;}
.card-actions{
  margin-top:10px;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:10px;
  border:1px solid var(--accent);
  color:var(--accent);
  font-weight:700;
}
.btn.filled{
  background:linear-gradient(135deg,#a80aa8,#c13bc1,#ff5ec9);
  color:#fff;
  border-color:transparent;
  box-shadow:0 10px 24px rgba(153,0,153,0.2);
}

/* Features (tabs) */
.features{
  max-width:1200px;
  margin:0 auto;
  padding:0 16px 80px;
}
.features-container{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:20px;
}
.feature-tabs{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px;
  box-shadow:0 12px 28px rgba(0,0,0,0.06);
}
.tab-item{
  padding:12px 14px;
  border-radius:10px;
  color:var(--muted);
  font-weight:600;
  cursor:pointer;
  border:1px solid transparent;
  transition:.2s ease;
}
.tab-item + .tab-item{margin-top:8px;}
.tab-item:hover{background:#f4f7ff;}
.tab-item.active{
  background:linear-gradient(135deg,#f3e5f9,#fff);
  border-color:var(--accent);
  color:var(--text);
}
.feature-content{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:20px;
  box-shadow:0 12px 28px rgba(0,0,0,0.06);
  min-height:320px;
}
.content-panel{display:none;}
.content-panel.active{display:block;}
.content-panel h3{font-size:1.6rem;margin-bottom:10px;}
.content-panel p{color:var(--muted);}
.feature-list{list-style:none;margin-top:12px;display:grid;gap:8px;}
.feature-list li{position:relative;padding-left:16px;color:var(--text);}
.feature-list li::before{
  content:'';
  width:6px;height:6px;
  border-radius:50%;
  background:var(--accent);
  position:absolute;left:0;top:10px;
}

/* Contact */
.contact{
  max-width:1200px;
  margin:0 auto;
  padding:0 16px 90px;
  background:transparent;
  border-radius:18px;
  box-shadow:none;
}
.contact-container{
  display:grid;
  grid-template-columns:1fr 0.9fr;
  gap:32px;
  padding:26px;
}
.contact .section-title{
  color:var(--primary);
}
.contact-form{
  background:rgba(255,255,255,0.92);
  border:1px solid #e2d2ec;
  border-radius:16px;
  padding:24px;
  box-shadow:0 18px 48px rgba(0,0,0,0.08);
}
.form-group{margin-bottom:18px;}
.form-group label{
  display:block;
  font-weight:700;
  margin-bottom:6px;
  color:var(--primary);
  text-transform:uppercase;
  letter-spacing:0.06em;
  font-size:0.92rem;
}
.form-group input,.form-group textarea{
  width:100%;
  padding:14px;
  border-radius:12px;
  border:1px solid #d8c5e7;
  background:#f3edf8;
  font-size:1rem;
  font-family:inherit;
  color:#4a3a55;
}
.form-group textarea{min-height:140px;resize:vertical;}
.submit-btn{
  width:100%;
  border:none;
  padding:16px;
  background:linear-gradient(135deg,#a80aa8,#c13bc1,#ff5ec9);
  color:#fff;
  font-weight:800;
  letter-spacing:0.05em;
  border-radius:12px;
  cursor:pointer;
  box-shadow:0 18px 40px rgba(153,0,153,0.25);
  text-transform:uppercase;
}
.contact-info{
  background:transparent;
  border:none;
  border-radius:0;
  padding:24px;
  box-shadow:none;
}
.contact-info h3{
  margin-bottom:18px;
  font-size:1.6rem;
  color:var(--primary);
}
.info-item{display:flex;gap:12px;align-items:center;margin-bottom:18px;}
.info-icon{
  width:54px;height:54px;
  border-radius:50%;
  background:linear-gradient(135deg,#a80aa8,#c13bc1);
  color:#fff;
  display:grid;place-items:center;
  font-size:1.4rem;
}
.info-details h4{margin:0;font-weight:800;color:var(--primary);}
.info-details p{margin:0;color:#3e3348;font-weight:600;}

/* Footer */
footer{
  background:#2b0c2b;
  color:#fff;
  padding:26px 14px;
}
.footer-content{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.footer-links{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-bottom:10px;
  flex-wrap:wrap;
}
.footer-links a{color:#f3e6fb;font-weight:600;}
.copyright{opacity:0.8;}

/* Modal */
.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.4);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:1500;
}
.modal.open{display:flex;}
.modal-dialog{
  width:min(900px,94vw);
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,0.2);
}
.modal-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid var(--border);
}
.modal-close{
  border:none;
  background:#f3f6fb;
  padding:8px 12px;
  border-radius:10px;
  cursor:pointer;
}
.modal-body{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  padding:16px;
}
.modal-media{background:#f7f1fa;border:1px solid var(--border);border-radius:10px;padding:10px;display:grid;place-items:center;}
.modal-media img{max-height:300px;object-fit:contain;}
.modal-text p{color:var(--muted);}

/* Contact feedback modal */
.feedback-modal .modal-dialog{
  width:min(520px,92vw);
}
.feedback-body{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:12px;
  padding:24px;
}
.feedback-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:28px;
  color:#fff;
  background:linear-gradient(135deg,#a80aa8,#c13bc1,#ff5ec9);
  box-shadow:0 12px 30px rgba(153,0,153,0.22);
}
.feedback-title{
  margin:0;
  font-size:1.4rem;
  font-weight:800;
  color:var(--text);
}
.feedback-text{
  margin:0;
  color:var(--muted);
}
.feedback-close{
  border:none;
  padding:10px 20px;
  border-radius:999px;
  background:linear-gradient(135deg,#a80aa8,#c13bc1,#ff5ec9);
  color:#fff;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(153,0,153,0.25);
}
.feedback-modal.is-error .feedback-icon{
  background:linear-gradient(135deg,#dc2626,#ef4444);
  box-shadow:0 12px 30px rgba(220,38,38,0.25);
}

/* PDF modal */
.pdf-modal .modal-dialog{
  width:min(980px,94vw);
  height:min(86vh,900px);
  display:flex;
  flex-direction:column;
}
.pdf-body{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:0;
  flex:1;
}
.pdf-frame{
  width:100%;
  flex:1;
  border:none;
  background:#f7f1fa;
}
.pdf-actions{
  padding:12px 16px;
  border-top:1px solid var(--border);
  display:flex;
  justify-content:flex-end;
}

/* WhatsApp */
.wa-widget{position:fixed;right:18px;bottom:18px;z-index:1400;}
.wa-fab{border:none;background:transparent;cursor:pointer;padding:0;}
.wa-icon{width:58px;height:58px;object-fit:contain;}
.wa-card{
  position:absolute;
  right:0;bottom:70px;
  width:320px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:0 18px 60px rgba(0,0,0,0.18);
  transform:translateY(6px);
  opacity:0;
  pointer-events:none;
  transition:.2s ease;
}
.wa-card.open{transform:translateY(0);opacity:1;pointer-events:auto;}
.wa-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  background:#25d366;
  color:#fff;
}
.wa-body{padding:14px;color:var(--text);}
.wa-bubble{
  background:#f7f1fa;
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px;
  margin-bottom:8px;
}
.wa-action{
  display:inline-block;
  padding:10px 14px;
  background:#25d366;
  color:#fff;
  border-radius:10px;
  font-weight:700;
}
.wa-close{border:none;background:transparent;color:#fff;font-size:20px;cursor:pointer;}

/* Responsive */
@media(max-width:960px){
  .nav-links{
    position:fixed;
    top:74px;left:0;width:100%;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:16px 18px;
    border-bottom:1px solid var(--border);
    transform:translateY(-120%);
    transition:.25s ease;
  }
  .nav-links.active{transform:translateY(0);}
  .menu-toggle{display:flex;}
  .hero-copy h1{font-size:2.4rem;}
  .hero-slider.full{
    aspect-ratio:1920/850;
    min-height:260px;
    max-height:72vh;
    width:100%;
    max-width:100%;
    margin:0;
    border-radius:16px;
    box-shadow:0 14px 40px rgba(0,0,0,0.14);
  }
  .hero-slide img{object-fit:contain;}
  .hero-dots{bottom:12px;}
  .hero-dots button{width:32px;height:6px;}
  .suppliers-wrap{grid-template-columns:1fr;}
  .suppliers{overflow:hidden;}
  .suppliers-wrap{
    gap:20px;
    align-items:stretch;
  }
  .logo-panel{
    flex:1 1 100%;
    min-width:100%;
    padding:6px 0;
  }
  .suppliers-info{
    flex:1 1 100%;
    min-width:100%;
    padding:0 4px;
  }
  .features-container{grid-template-columns:1fr;}
  .contact-container{grid-template-columns:1fr;}
  .about-layout{grid-template-columns:1fr;justify-items:center;}
  .about-mv-row{grid-template-columns:1fr;}
  .video-frame{max-width:100%;min-height:320px;}
  .about-stats{grid-template-columns:repeat(2,minmax(180px,1fr));}
  .catalog-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .suppliers-wrap{grid-template-columns:1fr;}
  .logo-track{animation-duration:26s;}
  footer{padding:22px 16px;}
  .footer-content{align-items:center;text-align:center;gap:12px;}
  .footer-links{
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:100%;
  }
  .footer-links a{width:100%;text-align:center;}
}

@media(max-width:640px){
  .hero-copy h1{font-size:2.1rem;}
  .hero-slider.full{
    aspect-ratio:1920/850;
    min-height:200px;
    max-height:65vh;
    border-radius:14px;
    margin:0;
  }
  .hero-slide img{object-fit:contain;}
  .hero-meta .meta-item{min-width:100%;}
  .cert-track{gap:12px;}
  .video-body video{height:320px;}
  .product-card{min-width:240px;}
  .modal-body{grid-template-columns:1fr;}
  .hero-dots{gap:4px;}
  .hero-dots button{width:22px;height:6px;}
  .about-stats{grid-template-columns:1fr;}
  .about-mv-row{gap:14px;}
  .about-mv-card{padding:16px;}
  .catalog-grid{grid-template-columns:1fr;}
  .suppliers{overflow:hidden;}
  .logo-panel{min-width:100%;}
  .suppliers-info{min-width:100%;}
  footer{padding:22px 16px;}
  .footer-content{align-items:center;text-align:center;gap:12px;}
  .footer-links{
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:100%;
  }
  .footer-links a{width:100%;text-align:center;}
}
