/* ============================================================
   MINYA 3D - Main CSS v1.0.14
   Modern dark theme
   ============================================================ */

:root{
  
  --navy:    #0F172A;   
  --navy2:   #1E293B;   
  --navy3:   #293548;   

  
  --blue:    #0EA5E9;
  --blue2:   #0284C7;
  --orange:  #F97316;
  --orange2: #EA580C;
  --purple:  #8B5CF6;
  --purple2: #7C3AED;
  --green:   #22C55E;
  --red:     #EF4444;
  --gold:    #FFB800;

  
  --text:    #F1F5F9;   
  --muted:   #CBD5E1;   
  --faint:   #64748B;   

  
  --border:  rgba(148,163,184,0.20);   
  --border2: rgba(148,163,184,0.38);
  --card:    rgba(30,41,59,0.95);       

  
  --radius:  12px;
  --radius2: 16px;
  --shadow:  0 4px 24px rgba(0,0,0,0.35);
}

*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  background: var(--navy);
  color: var(--text);
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Grid arka plan */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(148,163,184,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }


.font-orb { font-family: 'Orbitron', sans-serif; }
h1,h2,h3,h4,h5 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem,4.5vw,3.8rem); }
h2 { font-size: clamp(1.6rem,3vw,2.6rem); }
h3 { font-size: 1.25rem; }


.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,23,42,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.nav-container {
  max-width: 1400px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
/* Logo: white bg pill for visibility */
.nav-logo-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 5px 12px;
  display: flex; align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.nav-logo { height: 32px; display: block; }
.nav-links {
  display: flex; gap: 1.75rem; align-items: center;
}
.nav-links a {
  color: var(--muted); font-size: .9rem; font-weight: 500;
  letter-spacing: .04em; transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--blue);
  transform: scaleX(0); transition: transform .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-cart {
  position: relative; color: var(--muted);
  transition: color .25s; display: flex;
}
.nav-cart:hover { color: var(--blue); }
.cart-badge {
  position: absolute; top: -6px; right: -8px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.nav-burger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--muted); border-radius: 2px; transition: all .3s;
}


.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem; letter-spacing: .03em;
  transition: all .3s; cursor: pointer; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff;
  box-shadow: 0 0 24px rgba(249,115,22,.3);
}
.btn-primary:hover { box-shadow: 0 0 40px rgba(249,115,22,.55); transform: translateY(-2px); }
.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff;
  box-shadow: 0 0 24px rgba(14,165,233,.25);
}
.btn-blue:hover { box-shadow: 0 0 40px rgba(14,165,233,.5); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border2);
}
.btn-outline:hover { background: rgba(14,165,233,.08); border-color: var(--blue); color: var(--blue); }
.btn-sm { padding: .5rem 1.2rem; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }


.section { padding: 5rem 2rem; position: relative; z-index: 1; }
.container { max-width: 1400px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: .2em; color: var(--blue);
  text-transform: uppercase; margin-bottom: .75rem;
}
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.6rem,2.8vw,2.4rem);
  font-weight: 700; margin-bottom: 1rem; line-height: 1.2;
}
.section-title span { color: var(--orange); }
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.8; max-width: 560px; }
.section-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2.5rem;
}


.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 2rem 80px;
  position: relative; overflow: hidden;
}
.hero-container {
  max-width: 1400px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-glow {
  position: absolute; pointer-events: none;
  border-radius: 50%; filter: blur(80px);
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(14,165,233,.12), transparent 70%);
  right: -100px; top: 50%; transform: translateY(-50%);
}
.hero-glow-2 {
  width: 350px; height: 350px;
  background: radial-gradient(ellipse, rgba(139,92,246,.1), transparent 70%);
  left: 5%; bottom: 5%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(14,165,233,.1); border: 1px solid rgba(14,165,233,.3);
  border-radius: 100px; padding: .4rem 1rem;
  font-size: .78rem; font-weight: 700; color: var(--blue);
  letter-spacing: .1em; margin-bottom: 1.5rem;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(1.5); }
}
.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.2rem,4.5vw,3.8rem);
  font-weight: 900; line-height: 1.08;
  margin-bottom: 1.5rem; letter-spacing: -.02em;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 1.1rem; color: var(--muted); line-height: 1.8; margin-bottom: 2.5rem; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2rem; margin-top: 3rem; }
.hstat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem; font-weight: 700; color: var(--blue);
}
.hstat-num.o { color: var(--orange); }
.hstat-num.p { color: var(--purple); }
.hstat-label { font-size: .78rem; color: var(--muted); letter-spacing: .06em; }

/* Hero Printer Visual */
.hero-visual { position: relative; }
.printer-wrap {
  position: relative; border-radius: 24px;
  background: rgba(30,41,59,.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  overflow: hidden;
  animation: floatY 5s ease-in-out infinite;
}
.printer-wrap::before {
  content: ''; position: absolute; inset: -1px;
  background: linear-gradient(135deg, rgba(14,165,233,.4), transparent 40%, rgba(139,92,246,.3), transparent 80%);
  border-radius: 24px; z-index: -1;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.printer-wrap img {
  width: 100%; display: block;
  filter: drop-shadow(0 20px 60px rgba(14,165,233,.2));
}
.scan-overlay {
  position: absolute; inset: 0; pointer-events: none;
  overflow: hidden; border-radius: 24px;
}
.scan-line {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,.7), transparent);
  animation: scanY 4s ease-in-out infinite;
}
@keyframes scanY {
  0% { top: 5%; } 100% { top: 90%; }
}
.printer-corner { position: absolute; width: 18px; height: 18px; }
.printer-corner.tl { top:12px; left:12px; border-top:2px solid var(--blue); border-left:2px solid var(--blue); }
.printer-corner.tr { top:12px; right:12px; border-top:2px solid var(--blue); border-right:2px solid var(--blue); }
.printer-corner.bl { bottom:12px; left:12px; border-bottom:2px solid var(--blue); border-left:2px solid var(--blue); }
.printer-corner.br { bottom:12px; right:12px; border-bottom:2px solid var(--blue); border-right:2px solid var(--blue); }
.printer-status {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: rgba(15,23,42,.92); border: 1px solid var(--border);
  border-radius: 10px; padding: .6rem 1rem;
  display: flex; align-items: center; gap: .75rem;
  font-size: .78rem; font-family: 'Orbitron', monospace;
  color: var(--blue);
}
.status-dot { width:8px;height:8px;border-radius:50%;background:var(--green);animation:pulse 1.5s infinite; }


.stats-bar {
  background: rgba(30,41,59,.85);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.75rem 2rem; position: relative; z-index: 1;
}
.stats-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.7rem; font-weight: 700; color: var(--blue); display: block;
}
.stat-num.o { color: var(--orange); }
.stat-num.p { color: var(--purple); }
.stat-label { font-size: .78rem; color: var(--muted); letter-spacing: .08em; display: block; }


.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
}
.cat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius2); padding: 1.75rem 1.25rem;
  text-align: center; transition: all .35s; cursor: pointer;
  position: relative; overflow: hidden; display: block;
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,165,233,.06), rgba(139,92,246,.06));
  opacity: 0; transition: opacity .35s;
}
.cat-card:hover::before { opacity: 1; }
.cat-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(14,165,233,.15); }
.cat-icon-wrap {
  width: 60px; height: 60px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(139,92,246,.12));
  border: 1px solid rgba(14,165,233,.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 1.6rem;
  transition: all .35s;
}
.cat-card:hover .cat-icon-wrap { transform: scale(1.1); background: rgba(14,165,233,.18); }
.cat-card-title { font-weight: 600; font-size: .95rem; margin-bottom: .3rem; }
.cat-card-count { color: var(--muted); font-size: .82rem; }


.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius2); overflow: hidden; transition: all .35s; display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px); border-color: var(--border2);
  box-shadow: 0 24px 64px rgba(14,165,233,.12);
}
.product-thumb {
  height: 210px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #0D2744, #142038);
  display: flex; align-items: center; justify-content: center;
}
.product-thumb img { width:100%;height:100%;object-fit:cover; transition: transform .5s; }
.product-card:hover .product-thumb img { transform: scale(1.05); }
.product-thumb-placeholder { font-size: 4rem; opacity: .5; }
.product-badge-wrap { position:absolute;top:12px;left:12px;display:flex;gap:.4rem; }
.pbadge {
  font-size: .7rem; font-weight: 700; padding: .25rem .6rem;
  border-radius: 6px; letter-spacing: .06em;
}
.pbadge-new { background: rgba(14,165,233,.85); color:#fff; }
.pbadge-hot { background: rgba(249,115,22,.9); color:#fff; }
.pbadge-sale { background: rgba(239,68,68,.9); color:#fff; }
.product-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-material {
  font-size: .78rem; color: var(--blue);
  background: rgba(14,165,233,.1); border: 1px solid rgba(14,165,233,.2);
  display: inline-block; padding: .2rem .65rem; border-radius: 100px; margin-bottom: .75rem;
}
.product-title { font-weight: 600; font-size: .98rem; margin-bottom: auto; }
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border);
}
.product-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.15rem; font-weight: 700; color: var(--orange);
}
.product-price small { font-size: .72rem; color: var(--muted); font-family: 'Exo 2', sans-serif; font-weight: 400; }
.add-to-cart {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s; box-shadow: 0 0 16px rgba(14,165,233,.3);
}
.add-to-cart:hover { box-shadow: 0 0 28px rgba(14,165,233,.6); transform: scale(1.1); }
.add-to-cart.added { background: linear-gradient(135deg, var(--green), #16a34a); }


.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 1.75rem;
}
.feature-card {
  padding: 1.75rem; border: 1px solid var(--border); border-radius: var(--radius2);
  background: rgba(15,23,42,.5); transition: all .3s;
}
.feature-card:hover { border-color: var(--border2); background: rgba(14,165,233,.03); }
.feat-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem; border: 1px solid;
}
.feat-blue { background: rgba(14,165,233,.12); border-color: rgba(14,165,233,.25); }
.feat-orange { background: rgba(249,115,22,.12); border-color: rgba(249,115,22,.25); }
.feat-purple { background: rgba(139,92,246,.12); border-color: rgba(139,92,246,.25); }
.feat-green { background: rgba(34,197,94,.12); border-color: rgba(34,197,94,.25); }
.feature-card h3 { font-weight: 600; font-size: 1.05rem; margin-bottom: .6rem; }
.feature-card p { color: var(--muted); font-size: .9rem; line-height: 1.75; }


.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 1.5rem; }
.process-step { text-align: center; padding: 2rem 1.25rem; position: relative; }
.step-number {
  font-family: 'Orbitron', sans-serif; font-size: 3.5rem; font-weight: 900;
  color: rgba(14,165,233,.07); position: absolute; top: 0; left: 50%; transform: translateX(-50%);
}
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--navy3); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 1.25rem; position: relative; z-index: 1;
  transition: all .3s;
}
.process-step:hover .step-circle { border-color: var(--blue); box-shadow: 0 0 28px rgba(14,165,233,.25); }
.process-step h3 { font-weight: 600; margin-bottom: .5rem; }
.process-step p { color: var(--muted); font-size: .9rem; line-height: 1.65; }


.breadcrumb { display: flex; align-items: center; gap: .5rem; padding: 1.25rem 0; font-size: .88rem; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--faint); }
.breadcrumb .current { color: var(--text); }


.pagination { display: flex; justify-content: center; gap: .5rem; margin-top: 3rem; }
.page-btn {
  width: 38px; height: 38px; border-radius: 8px;
  border: 1px solid var(--border); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: all .25s;
}
.page-btn:hover, .page-btn.active { border-color: var(--blue); color: var(--blue); background: rgba(14,165,233,.08); }


.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .88rem; font-weight: 500; margin-bottom: .5rem; color: var(--muted); }
.form-control {
  width: 100%; padding: .75rem 1rem; border-radius: var(--radius);
  background: rgba(30,41,59,.85); border: 1px solid var(--border);
  color: var(--text); font-size: .95rem; font-family: inherit;
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(14,165,233,.12); }
.form-control::placeholder { color: var(--faint); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }


.alert { padding: .85rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: .92rem; border: 1px solid; }
.alert-success { background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.3); color: #4ade80; }
.alert-error   { background: rgba(239,68,68,.1); border-color: rgba(239,68,68,.3); color: #f87171; }
.alert-info    { background: rgba(14,165,233,.1); border-color: rgba(14,165,233,.3); color: #38bdf8; }


.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: .75rem 1rem; font-size: .82rem; letter-spacing: .08em; color: var(--muted); border-bottom: 1px solid var(--border); }
.cart-table td { padding: 1rem; border-bottom: 1px solid rgba(14,165,233,.08); vertical-align: middle; }
.cart-qty { display: flex; align-items: center; gap: .5rem; }
.qty-btn { width:30px;height:30px;border-radius:6px;border:1px solid var(--border);color:var(--text);display:flex;align-items:center;justify-content:center;transition:all .2s; }
.qty-btn:hover { border-color: var(--blue); color: var(--blue); }
.qty-val { min-width: 2rem; text-align: center; font-weight: 600; }


.site-footer {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  position: relative; z-index: 1;
}
.footer-inner { max-width: 1400px; margin: 0 auto; padding: 3.5rem 2rem 2rem; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer-logo { height: 34px; margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); font-size: .9rem; line-height: 1.75; }
.footer-contact { margin-top: 1rem; display: flex; flex-direction: column; gap: .4rem; }
.footer-contact span, .footer-contact a { color: var(--muted); font-size: .88rem; }
.footer-contact a:hover { color: var(--blue); }
.footer-col h4 {
  font-size: .8rem; font-weight: 700; letter-spacing: .15em; color: var(--blue);
  text-transform: uppercase; margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col a { color: var(--muted); font-size: .9rem; transition: color .25s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--faint); font-size: .85rem; }
.footer-socials { display: flex; gap: .6rem; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--border); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.footer-socials a:hover { border-color: var(--blue); color: var(--blue); }


.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--muted); margin-bottom: .45rem; letter-spacing: .02em; }
.form-control {
  width: 100%; padding: .72rem 1rem; border-radius: var(--radius);
  background: rgba(30,41,59,.9); border: 1px solid var(--border);
  color: var(--text); font-size: .95rem; font-family: inherit;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(14,165,233,.12); }
.form-control::placeholder { color: var(--faint); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
textarea.form-control { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.form-check { display: flex; align-items: center; gap: .6rem; cursor: pointer; font-size: .9rem; }
.form-check input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--blue); }


.mobile-filter-bar {
  display: none; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.mobile-filter-overlay {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(15,23,42,.92); backdrop-filter: blur(8px);
}
.mobile-filter-overlay.open { display: flex; align-items: flex-end; }
.mobile-filter-inner {
  background: var(--navy2); border-top: 1px solid var(--border);
  width: 100%; padding: 1.5rem; border-radius: 16px 16px 0 0;
  max-height: 75vh; overflow-y: auto;
}


@media (max-width: 1100px) {
  .hero-container { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: rgba(15,23,42,0.98); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; font-size: 1.1rem; }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .section { padding: 3.5rem 1.25rem; }
  .hero { padding: 100px 1.25rem 60px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .mobile-filter-bar { display: flex; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.revealed { opacity: 1; transform: none; transition: none; }
}

/* ─── HERO CONTENT FIX ─── */
.hero { z-index: 1; }
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-visual {
  position: relative;
  z-index: 2;
}
