/* ══════════════════════════════════════════════
   SERVERMARKET — servermarket.css v1.0
   Estilos globales del tema.
   Cargado via functions.php (wp_enqueue_style)
══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --blue:       #0057FF;
  --blue-dark:  #003FBF;
  --blue-light: #4D8FFF;
  --navy:       #02050F;
  --navy2:      #060A18;
  --slate:      #0D1324;
  --steel:      #6A7A9F;
  --white:      #E8EEFF;
  --accent:     #00E5FF;
  --green:      #00C97A;
  --red:        #FF3B5C;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Full-width wrapper para WordPress ── */
.sm-page {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Noise overlay */
.sm-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.6;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.sm-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 80px 80px;
  position: relative;
  overflow: hidden;
}

.sm-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(0,87,255,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,229,255,.09) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0,20,80,.6) 0%, transparent 60%);
}

.sm-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,87,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,87,255,.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.sm-hero-content { position: relative; z-index: 2; }

.sm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,87,255,.12);
  border: 1px solid rgba(0,87,255,.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeUp .8s ease both;
}

.sm-hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
}

.sm-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  animation: fadeUp .8s .1s ease both;
}

.sm-hero h1 span {
  background: linear-gradient(135deg, var(--blue-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sm-hero-sub {
  font-size: 1.05rem;
  color: var(--steel);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  animation: fadeUp .8s .2s ease both;
}

.sm-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeUp .8s .3s ease both;
}

/* ── Botones ── */
.sm-btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  letter-spacing: .02em;
  transition: all .25s;
  box-shadow: 0 8px 30px rgba(0,87,255,.35);
  border: none;
  cursor: pointer;
  display: inline-block;
}
.sm-btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,87,255,.5);
}

.sm-btn-secondary {
  color: var(--steel);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.sm-btn-secondary:hover { color: var(--white); }
.sm-btn-secondary::after { content: '→'; transition: transform .2s; }
.sm-btn-secondary:hover::after { transform: translateX(4px); }

/* ── Hero Visual ── */
.sm-hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s .4s ease both;
}

.sm-server-card {
  background: var(--slate);
  border: 1px solid rgba(0,87,255,.2);
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(0,87,255,.1);
}
.sm-server-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 30px; right: 30px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  border-radius: 2px;
}

.sm-server-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.sm-server-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--white);
  letter-spacing: .04em;
}
.sm-server-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: var(--green);
  font-weight: 500;
}
.sm-status-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 6px var(--green);
}

.sm-server-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.sm-spec-item {
  background: rgba(0,87,255,.06);
  border: 1px solid rgba(0,87,255,.12);
  border-radius: 8px;
  padding: 12px;
}
.sm-spec-label {
  font-size: .68rem;
  color: var(--steel);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.sm-spec-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.sm-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--steel);
  margin-bottom: 6px;
}
.sm-bar-track {
  height: 4px;
  background: rgba(255,255,255,.06);
  border-radius: 2px;
  margin-bottom: 12px;
  overflow: hidden;
}
.sm-bar-fill {
  height: 100%;
  border-radius: 2px;
  animation: barLoad 1.5s ease both;
}
@keyframes barLoad { from { width: 0; } }
.sm-bar-fill.blue  { background: linear-gradient(90deg, var(--blue), var(--accent)); width: 78%; }
.sm-bar-fill.green { background: linear-gradient(90deg, var(--green), #00FFB2); width: 45%; }
.sm-bar-fill.orange{ background: linear-gradient(90deg, #FF8C00, #FFD700); width: 62%; }

.sm-server-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.sm-price-tag {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.sm-price-tag small {
  font-size: .75rem;
  color: var(--steel);
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}
.sm-btn-card {
  background: var(--blue);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.sm-btn-card:hover { background: var(--blue-light); transform: translateY(-1px); }

/* Floating badges */
.sm-float-badge {
  position: absolute;
  background: var(--navy2);
  border: 1px solid rgba(0,87,255,.25);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  white-space: nowrap;
}
.sm-float-badge.left   { left: -60px; top: 30%; animation: floatLeft 4s ease-in-out infinite; }
.sm-float-badge.bottom { right: -40px; bottom: 20%; animation: floatRight 4s 1s ease-in-out infinite; }

@keyframes floatLeft  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes floatRight { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ══════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════ */
.sm-trust-bar {
  background: #030712;
  border-top: 1px solid rgba(0,87,255,.15);
  border-bottom: 1px solid rgba(0,87,255,.15);
  padding: 20px 80px;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.sm-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  color: var(--steel);
  font-weight: 500;
}
.sm-trust-icon { font-size: 1.4rem; }
.sm-trust-item strong { color: var(--white); }

/* ══════════════════════════════════════════════
   SECTION LABELS
══════════════════════════════════════════════ */
.sm-section-label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--blue-light);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sm-section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.sm-section-sub {
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
}

/* ══════════════════════════════════════════════
   CATEGORÍAS
══════════════════════════════════════════════ */
.sm-categories {
  padding: 100px 80px;
  position: relative;
}
.sm-cat-header {
  text-align: center;
  margin-bottom: 60px;
}
.sm-cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.sm-cat-card {
  background: var(--slate);
  border: 1px solid rgba(0,87,255,.12);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.sm-cat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0);
  transition: transform .3s;
}
.sm-cat-card:hover {
  border-color: rgba(0,87,255,.4);
  transform: translateY(-4px);
  background: var(--navy2);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.sm-cat-card:hover::after { transform: scaleX(1); }
.sm-cat-emoji  { font-size: 2rem; margin-bottom: 12px; display: block; }
.sm-cat-name   { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .88rem; margin-bottom: 4px; }
.sm-cat-count  { font-size: .72rem; color: var(--steel); }

/* ══════════════════════════════════════════════
   PRODUCTOS DESTACADOS
══════════════════════════════════════════════ */
.sm-products { padding: 40px 80px 100px; }

.sm-products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.sm-ver-todo {
  color: var(--blue-light);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.sm-ver-todo:hover { gap: 10px; }

.sm-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sm-product-card {
  background: var(--slate);
  border: 1px solid rgba(0,87,255,.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s;
}
.sm-product-card:hover {
  border-color: rgba(0,87,255,.35);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,.4);
}

/* Enlace que envuelve la imagen */
.sm-product-img-link {
  display: block;
  text-decoration: none;
}

.sm-product-img {
  background: #060A18;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.sm-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sm-product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,87,255,.08), transparent 70%);
  pointer-events: none;
}

/* Badges */
.sm-badge-oferta {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .06em;
  text-transform: uppercase;
  z-index: 1;
}
.sm-badge-nuevo {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .06em;
  text-transform: uppercase;
  z-index: 1;
}
.sm-badge-agotado {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--steel);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .06em;
  text-transform: uppercase;
  z-index: 1;
}

.sm-product-body { padding: 20px; }

.sm-product-brand {
  font-size: .68rem;
  color: var(--blue-light);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.sm-product-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--white);
}
.sm-product-name a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.sm-product-name a:hover { color: var(--blue-light); }

.sm-product-specs-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.sm-spec-chip {
  background: rgba(0,87,255,.1);
  border: 1px solid rgba(0,87,255,.2);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: .68rem;
  color: var(--steel);
  font-weight: 500;
}

.sm-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.sm-product-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.sm-product-price-old {
  font-size: .75rem;
  color: var(--steel);
  text-decoration: line-through;
  margin-bottom: 2px;
}

/* Botón Agregar (ahora es <a>, no <button>) */
.sm-btn-add {
  background: rgba(0,87,255,.15);
  border: 1px solid rgba(0,87,255,.3);
  color: var(--blue-light);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.sm-btn-add:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.sm-btn-agotado {
  opacity: 0.6;
  cursor: default;
}
.sm-btn-agotado:hover {
  background: rgba(0,87,255,.15);
  color: var(--blue-light);
  border-color: rgba(0,87,255,.3);
}

/* Sin productos */
.sm-no-products {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--steel);
  padding: 60px 0;
  font-size: 1rem;
}

/* ══════════════════════════════════════════════
   MARCAS
══════════════════════════════════════════════ */
.sm-brands {
  padding: 60px 80px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.sm-brands-title {
  text-align: center;
  font-size: .72rem;
  color: var(--steel);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.sm-brands-row {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.sm-brand-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: rgba(138,155,191,.4);
  letter-spacing: .04em;
  transition: color .3s;
}
.sm-brand-logo:hover { color: var(--white); }

/* ══════════════════════════════════════════════
   CTA COTIZACIÓN
══════════════════════════════════════════════ */
.sm-cta-section {
  margin: 0 80px 100px;
  background: linear-gradient(135deg, var(--navy2) 0%, rgba(0,87,255,.08) 100%);
  border: 1px solid rgba(0,87,255,.2);
  border-radius: 20px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.sm-cta-section::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,87,255,.12) 0%, transparent 70%);
  pointer-events: none;
}
.sm-cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.sm-cta-sub {
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
}
.sm-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}
.sm-btn-cta-main {
  background: var(--blue);
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  text-align: center;
  transition: all .25s;
  box-shadow: 0 8px 30px rgba(0,87,255,.4);
}
.sm-btn-cta-main:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,87,255,.5);
}
.sm-btn-cta-sec {
  color: var(--steel);
  font-size: .85rem;
  text-align: center;
  text-decoration: none;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  transition: all .2s;
}
.sm-btn-cta-sec:hover { color: var(--white); border-color: rgba(255,255,255,.25); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.sm-footer {
  background: #030712;
  border-top: 1px solid rgba(0,87,255,.12);
  padding: 60px 80px 32px;
}
.sm-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.sm-footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 16px;
}
.sm-footer-tagline {
  color: var(--steel);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.sm-footer-social { display: flex; gap: 12px; }
.sm-social-btn {
  width: 36px; height: 36px;
  background: rgba(0,87,255,.1);
  border: 1px solid rgba(0,87,255,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.sm-social-btn:hover { background: var(--blue); border-color: var(--blue); }

.sm-footer-col h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.sm-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sm-footer-col ul li a {
  color: var(--steel);
  text-decoration: none;
  font-size: .85rem;
  transition: color .2s;
}
.sm-footer-col ul li a:hover { color: var(--white); }

.sm-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sm-footer-copy { font-size: .8rem; color: var(--steel); }
.sm-footer-legal { display: flex; gap: 24px; }
.sm-footer-legal a {
  font-size: .8rem;
  color: var(--steel);
  text-decoration: none;
  transition: color .2s;
}
.sm-footer-legal a:hover { color: var(--white); }

/* ══════════════════════════════════════════════
   ANIMACIONES
══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(1.3); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .sm-hero { padding: 80px 48px; }
  .sm-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .sm-products-grid { grid-template-columns: repeat(2, 1fr); }
  .sm-footer-grid { grid-template-columns: 1fr 1fr; }
  .sm-cta-section { grid-template-columns: 1fr; margin: 0 48px 80px; }
  .sm-categories, .sm-products { padding-left: 48px; padding-right: 48px; }
  .sm-trust-bar { padding: 20px 48px; gap: 32px; }
  .sm-brands { padding: 60px 48px; }
  .sm-footer { padding: 60px 48px 32px; }
}

@media (max-width: 900px) {
  .sm-hero { grid-template-columns: 1fr; padding: 60px 32px; }
  .sm-hero-visual { display: none; }
  .sm-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .sm-products-grid { grid-template-columns: 1fr 1fr; }
  .sm-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .sm-cta-section { margin: 0 32px 60px; padding: 48px 32px; }
  .sm-categories, .sm-products { padding-left: 32px; padding-right: 32px; }
  .sm-trust-bar { gap: 24px; padding: 20px 32px; }
  .sm-brands { padding: 40px 32px; }
  .sm-brands-row { gap: 32px; }
  .sm-footer { padding: 48px 32px 24px; }
}

@media (max-width: 600px) {
  .sm-hero { padding: 48px 20px; }
  .sm-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .sm-products-grid { grid-template-columns: 1fr; }
  .sm-hero-actions { flex-direction: column; align-items: flex-start; }
  .sm-cta-section { margin: 0 16px 48px; padding: 36px 24px; }
  .sm-categories { padding: 60px 20px; }
  .sm-products { padding: 24px 20px 60px; }
  .sm-trust-bar { padding: 20px; gap: 20px; }
  .sm-brands { padding: 32px 20px; }
  .sm-footer { padding: 40px 20px 20px; }
  .sm-products-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}


/* ══ TOPBAR GLOBE + CENTER ══ */
.sm-topbar {
  display:grid !important;
  grid-template-columns:1fr auto 1fr !important;
  align-items:center;
}
.sm-topbar-center { display:flex; justify-content:center; }
.sm-topbar-right  { display:flex; align-items:center; gap:12px; justify-content:flex-end; }

/* Globe editable */
.sm-topbar-globe {
  max-width:260px;
  background:rgba(0,87,255,.08);
  border:1px solid rgba(0,87,255,.2);
  border-radius:100px;
  padding:6px 14px;
  display:flex; align-items:center; gap:8px;
  cursor:default;
}
.sm-globe-icon { font-size:.9rem; flex-shrink:0; }
.sm-globe-text {
  font-size:.72rem; color:var(--steel); font-weight:500;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
  max-width:200px;
}

