:root {
  --bg: #eaf1f5;
  --surface: rgba(255, 255, 255, .62);
  --surface-2: rgba(255, 255, 255, .8);
  --surface-glass: rgba(255, 255, 255, .7);
  --line: rgba(15, 70, 78, .16);
  --text: #0a2027;
  --muted: #526c73;
  --neon: #008fa0;
  --orange: #e85d19;
  --white: #0a2027;
  --shadow: 0 24px 65px rgba(25, 65, 80, .13);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --transition: .55s cubic-bezier(.16, 1, .3, 1);
}

[data-theme="dark"] {
  --bg: #05080c;
  --surface: rgba(13, 22, 29, .58);
  --surface-2: rgba(24, 39, 48, .68);
  --surface-glass: rgba(7, 13, 18, .62);
  --line: rgba(170, 255, 239, .2);
  --text: #effffb;
  --muted: #91aaa8;
  --neon: #00ffcc;
  --orange: #ff7025;
  --white: #fff;
  --shadow: 0 24px 80px rgba(0, 0, 0, .3);
}

* {
  box-sizing: border-box;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 12%, rgba(0, 143, 160, .10), transparent 25rem),
    radial-gradient(circle at 92% 35%, rgba(232, 93, 25, .08), transparent 22rem),
    var(--bg);
  font: 14px Arial, sans-serif;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  filter: blur(50px);
  opacity: .2;
  animation: ambientMove 15s ease-in-out infinite alternate;
}

body::before {
  top: 18%;
  left: -130px;
  background: var(--neon);
}

body::after {
  right: -130px;
  bottom: 10%;
  background: var(--orange);
  animation-delay: -6s;
}

body:has(.cart-drawer.open) {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button,
input,
select,
.button {
  border-radius: 999px;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.announcement {
  position: relative;
  z-index: 30;
  padding: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--neon);
  background: rgba(255, 255, 255, .45);
  text-align: center;
  font: 10px monospace;
  letter-spacing: 1px;
  backdrop-filter: blur(14px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--surface-glass);
  backdrop-filter: blur(24px) saturate(150%);
}

.header-main {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  white-space: nowrap;
}

.logo b {
  color: var(--neon);
}

.logo-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--bg);
  background: linear-gradient(135deg, var(--neon), #8affed);
  border-radius: 13px;
  font: bold 12px monospace;
  box-shadow: 0 0 28px color-mix(in srgb, var(--neon) 45%, transparent);
  animation: logoPulse 3s ease-in-out infinite;
}

.search-form {
  display: flex;
  flex: 1;
  max-width: 560px;
  height: 44px;
  align-items: center;
  padding: 0 5px 0 15px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .45);
  color: var(--muted);
  border-radius: 999px;
  box-shadow: inset 0 1px rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
}

.search-form:focus-within {
  border-color: var(--neon);
  box-shadow: 0 0 25px color-mix(in srgb, var(--neon) 18%, transparent);
}

.search-form span {
  font-size: 23px;
}

.search-form input {
  flex: 1;
  min-width: 0;
  padding: 0 12px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  border-radius: 0;
}

.search-form button,
.button {
  border: 0;
  padding: 12px 18px;
  font-weight: 700;
}

.search-form button {
  color: var(--bg);
  background: var(--neon);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: auto;
}

.theme-toggle-btn,
.account-link,
.cart-button,
.menu-toggle {
  border: 1px solid transparent;
  color: var(--text);
  background: transparent;
}

.theme-toggle-btn {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border-color: var(--line);
  background: rgba(255, 255, 255, .2);
  font-size: 18px;
}

.theme-toggle-btn:hover {
  border-color: var(--neon);
  transform: scale(1.08) rotate(10deg);
}

.country-select {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: var(--neon);
  background: rgba(255, 255, 255, .2);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.country-select select {
  max-width: 125px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.account-link,
.cart-button,
.menu-toggle {
  padding: 9px;
}

.cart-button b {
  color: var(--orange);
}

.menu-toggle {
  display: none;
  font-size: 22px;
}

.main-nav {
  border-top: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  gap: 28px;
}

.nav-inner a {
  padding: 13px 0;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font: 11px monospace;
  text-transform: uppercase;
}

.nav-inner a:hover,
.nav-inner a.active {
  border-color: var(--neon);
  color: var(--neon);
}

.hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 45%, color-mix(in srgb, var(--neon) 16%, transparent), transparent 28rem),
    transparent;
}

.hero::before {
  position: absolute;
  top: 12%;
  left: 50%;
  width: 1px;
  height: 120%;
  background: linear-gradient(transparent, var(--neon), transparent);
  content: "";
  opacity: .35;
  transform: rotate(35deg);
  animation: lightBeam 9s linear infinite;
}

.hero-grid {
  display: grid;
  min-height: 590px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.eyebrow,
.kicker {
  color: var(--neon);
  font: 10px monospace;
  letter-spacing: 2px;
}

.hero h1 {
  margin: 20px 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -4px;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero p {
  max-width: 510px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.button-primary {
  color: var(--bg);
  background: linear-gradient(135deg, var(--neon), #82ffed);
  box-shadow: 0 0 30px color-mix(in srgb, var(--neon) 25%, transparent);
}

.button-primary:hover {
  box-shadow: 0 14px 40px color-mix(in srgb, var(--neon) 32%, transparent);
  transform: translateY(-4px) scale(1.02);
}

.button-outline {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, .25);
  backdrop-filter: blur(12px);
}

.button-outline:hover {
  border-color: var(--neon);
  background: color-mix(in srgb, var(--neon) 10%, transparent);
  transform: translateY(-4px);
}

.button-light {
  color: var(--bg);
  background: var(--white);
}

.hero-status {
  color: var(--muted);
  font: 11px monospace;
}

.hero-status span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 15px var(--neon);
  animation: statusBlink 1.5s infinite;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 370px;
  place-items: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--neon) 38%, transparent);
  background:
    linear-gradient(135deg, rgba(0, 255, 204, .12), rgba(255, 255, 255, .03)),
    rgba(255, 255, 255, .055);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 0 90px rgba(0, 255, 204, .08),
    0 25px 80px rgba(0, 0, 0, .28);
  backdrop-filter: blur(24px) saturate(135%);
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 255, 204, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 204, .07) 1px, transparent 1px);
  background-size: 30px 30px;
  content: "";
  mask-image: linear-gradient(transparent, #000 25%, #000 75%, transparent);
}

.hero-visual::after {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
  animation: visualOrbit 12s linear infinite;
}

.scan-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
  opacity: .65;
  animation: scan 4s linear infinite;
}

.visual-label,
.visual-code {
  position: absolute;
  color: var(--muted);
  font: 10px monospace;
  letter-spacing: 1px;
}

.visual-label {
  top: 20px;
  left: 20px;
}

.visual-code {
  right: 20px;
  bottom: 20px;
  color: var(--orange);
  text-align: right;
}

.orb {
  z-index: 1;
  display: grid;
  width: 145px;
  height: 145px;
  place-items: center;
  border: 1px solid var(--neon);
  border-radius: 50%;
  color: var(--neon);
  background: rgba(0, 255, 204, .08);
  box-shadow:
    0 0 55px rgba(0, 255, 204, .35),
    inset 0 0 35px rgba(0, 255, 204, .18);
  font-size: 44px;
  font-weight: bold;
  transform: perspective(600px) rotateX(12deg);
  animation: float 4s ease-in-out infinite;
}

.visual-copy {
  position: absolute;
  bottom: 35px;
  left: 35px;
}

.visual-copy strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  letter-spacing: 3px;
}

.visual-copy small {
  color: var(--neon);
  font: 10px monospace;
}

.section {
  padding: 85px 0;
  background: transparent;
}

.section-dark,
.footer,
.help-section {
  background: rgba(15, 70, 78, .045);
  border-block: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.benefits {
  padding: 24px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefits article {
  display: flex;
  gap: 12px;
}

.benefits article > span {
  color: var(--neon);
  font-size: 22px;
}

.benefits h2 {
  margin: 0 0 6px;
  font-size: 13px;
}

.benefits p,
.country-card p,
.newsletter p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section h2,
.center-heading h2 {
  margin: 10px 0 0;
  font-size: 37px;
  letter-spacing: -2px;
}

.section-index {
  color: var(--orange);
  font: 11px monospace;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.category-card,
.product-card,
.country-card,
.metric,
.arrival-image {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .15)),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(130%);
}

.category-card {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: var(--text);
  text-align: left;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.category-card:hover,
.product-card:hover,
.country-card:hover,
.metric:hover {
  border-color: var(--neon);
  box-shadow: 0 20px 60px rgba(0, 255, 204, .12);
  transform: translateY(-9px) rotateX(2deg);
}

.category-card span {
  color: var(--neon);
  font-size: 34px;
  filter: drop-shadow(0 0 10px color-mix(in srgb, var(--neon) 50%, transparent));
}

.category-card strong {
  font-size: 16px;
}

.category-card small {
  color: var(--orange);
  font: 10px monospace;
}

.products-section {
  background: rgba(15, 70, 78, .025);
}

.product-tools {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font: 11px monospace;
}

.product-tools select {
  padding: 9px 13px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--surface);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.product-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.product-image {
  position: relative;
  display: grid;
  height: 205px;
  place-items: center;
  background:
    radial-gradient(circle, rgba(0, 255, 204, .18), transparent 55%),
    linear-gradient(135deg, #d4f6f3, #eaf1f5);
  font-size: 68px;
}

.product-image.orange {
  background: radial-gradient(circle, rgba(255, 107, 0, .25), transparent 55%), linear-gradient(135deg, #f8e9de, #f5f0ee);
}

.product-image.blue {
  background: radial-gradient(circle, rgba(0, 150, 255, .25), transparent 55%), linear-gradient(135deg, #d9eef8, #e8f0f5);
}

.product-image.purple {
  background: radial-gradient(circle, rgba(190, 80, 255, .22), transparent 55%), linear-gradient(135deg, #efe4f8, #f0ebf5);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  color: var(--bg);
  background: var(--neon);
  font: 10px monospace;
  border-radius: 999px;
}

.badge.offer {
  color: var(--white);
  background: var(--orange);
}

.product-info {
  padding: 16px;
}

.product-category {
  color: var(--neon);
  font: 10px monospace;
  text-transform: uppercase;
}

.product-reference {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font: 10px monospace;
}

.product-info h3 {
  min-height: 36px;
  margin: 9px 0;
  font-size: 14px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price {
  color: var(--white);
  font-size: 19px;
}

.old-price {
  color: var(--muted);
  font-size: 11px;
  text-decoration: line-through;
}

.stock {
  margin: 12px 0 15px;
  color: var(--orange);
  font: 11px monospace;
}

.product-actions {
  display: flex;
  gap: 7px;
}

.product-actions a,
.add-button {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, .25);
  font-size: 11px;
  text-align: center;
}

.add-button {
  border-color: var(--neon);
  color: var(--bg);
  background: var(--neon);
  font-weight: bold;
}

.no-results {
  grid-column: 1 / -1;
  padding: 70px;
  color: var(--muted);
  text-align: center;
}

.offer-banner,
.newsletter {
  border-block: 1px solid color-mix(in srgb, var(--neon) 25%, transparent);
  background:
    linear-gradient(100deg, rgba(0, 255, 204, .15), rgba(255, 255, 255, .04)),
    rgba(255, 255, 255, .04);
  backdrop-filter: blur(18px);
}

.offer-banner {
  padding: 50px 0;
}

.offer-content,
.newsletter-content,
.help-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.offer-content h2 {
  margin: 10px 0;
  font-size: 34px;
}

.center-heading {
  margin-bottom: 35px;
  text-align: center;
}

.center-heading p {
  color: var(--muted);
}

.country-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.country-card {
  display: flex;
  gap: 20px;
  padding: 30px;
  border-radius: var(--radius-md);
}

.country-card > span {
  font-size: 38px;
}

.country-card h3 {
  margin: 0 0 9px;
  font-size: 22px;
}

.text-button {
  padding: 0;
  border: 0;
  color: var(--neon);
  background: transparent;
  font: 11px monospace;
}

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.arrival-card {
  display: flex;
  gap: 13px;
  align-items: center;
}

.arrival-image {
  display: grid;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  place-items: center;
  border-radius: var(--radius-sm);
  font-size: 31px;
}

.arrival-card h3 {
  margin: 7px 0;
  font-size: 13px;
}

.arrival-card p {
  margin: 0;
  color: var(--orange);
  font: 11px monospace;
}

.help-section {
  padding: 44px 0;
}

.help-content > div {
  flex: 1;
}

.help-symbol {
  color: var(--orange);
  font-size: 48px;
}

.help-content h2 {
  margin: 8px 0;
  font-size: 30px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.metric {
  padding: 25px;
  border-radius: var(--radius-md);
}

.metric strong {
  display: block;
  color: var(--neon);
  font-size: 36px;
}

.metric span {
  color: var(--muted);
  font: 11px monospace;
}

.newsletter {
  padding: 50px 0;
}

.newsletter h2 {
  margin: 10px 0;
  font-size: 28px;
}

.newsletter form {
  display: flex;
  width: 420px;
  padding: 5px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .2);
  border-radius: 999px;
  backdrop-filter: blur(15px);
}

.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 10px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.footer {
  padding: 55px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-brand p {
  max-width: 250px;
  color: var(--muted);
  line-height: 1.6;
}

.footer h3 {
  color: var(--neon);
  font: 11px monospace;
}

.footer-grid > div:not(:first-child) a {
  display: block;
  margin: 12px 0;
  color: var(--muted);
  font-size: 12px;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--neon);
  font-size: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 10px monospace;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -430px;
  z-index: 100;
  display: flex;
  width: min(420px, 100%);
  height: 100vh;
  flex-direction: column;
  border-left: 1px solid var(--line);
  background: var(--surface-2);
  border-radius: 28px 0 0 28px;
  box-shadow: -15px 0 50px rgba(0, 0, 0, .35);
  backdrop-filter: blur(28px);
  transition: right .35s ease;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  margin: 8px 0 0;
}

.cart-header button {
  border: 0;
  color: var(--text);
  background: transparent;
  font-size: 28px;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-image {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  font-size: 25px;
}

.cart-item img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h3 {
  margin: 2px 0 6px;
  font-size: 13px;
}

.quantity {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}

.quantity button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
}

.quantity .remove {
  width: auto;
  border: 0;
  color: var(--orange);
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--line);
}

.cart-footer > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 17px;
}

.cart-footer strong {
  color: var(--neon);
}

.cart-footer small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
}

.full-width {
  width: 100%;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(7px);
}

.overlay.show {
  display: block;
}

.toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  z-index: 110;
  padding: 13px 20px;
  color: var(--bg);
  background: var(--neon);
  border-radius: 999px;
  font: 12px monospace;
  opacity: 0;
  transform: translate(-50%, 20px);
}

.toast.show,
.toast.toast-pop {
  opacity: 1;
  transform: translate(-50%, 0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(8px);
}

.modal.hidden {
  display: none;
}

.modal-card {
  position: relative;
  width: min(980px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.modal-head button {
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
}

.video-body iframe,
.video-body video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.scroll-animate,
.product-card {
  opacity: 0;
  filter: blur(10px);
  transform: perspective(900px) translateY(45px) rotateX(10deg) scale(.96);
}

.scroll-animate.visible,
.product-card.visible {
  opacity: 1;
  filter: blur(0);
  transform: perspective(900px) translateY(0) rotateX(0) scale(1);
  transition: opacity .9s ease, filter .9s ease, transform .9s cubic-bezier(.2, .8, .2, 1);
}

.ib-page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity .3s ease, visibility .3s ease;
}

.ib-page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ib-page-loader > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.ib-page-loader b {
  font-size: 18px;
  letter-spacing: 2px;
}

.ib-page-loader span {
  color: var(--muted);
  font-size: 12px;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.skeleton-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.sk-img {
  height: 205px;
  background: linear-gradient(90deg, var(--surface), var(--surface-2), var(--surface));
  background-size: 200% 100%;
  animation: skShimmer 1.2s infinite;
}

.sk-body {
  padding: 16px;
}

.sk-line,
.sk-btn {
  height: 12px;
  margin-bottom: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--surface), var(--surface-2), var(--surface));
  background-size: 200% 100%;
  animation: skShimmer 1.2s infinite;
}

.sk-btn {
  width: 60%;
  height: 30px;
  margin-top: 14px;
}

@keyframes skShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.page-btn {
  min-width: 38px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--surface);
  font: 12px monospace;
}

.page-btn.active {
  border-color: var(--neon);
  color: var(--bg);
  background: var(--neon);
}

.page-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.ibCatalogSwatches {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin: 9px 0 8px;
}

.ibCatalogSwatch {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  padding: 0;
  border: 2px solid var(--line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ibCatalogSwatch:hover,
.ibCatalogSwatch.active {
  transform: translateY(-2px) scale(1.06);
  border-color: var(--neon);
  box-shadow: 0 8px 18px rgba(0, 255, 204, .18);
}

.ibCatalogDot {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .16);
}

.catalog-no-image {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: #e8f9fa;
  color: var(--neon);
  font-size: 28px;
  font-weight: 950;
}

.catalog-offer {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font: 10px monospace;
}

@keyframes scan {
  from { top: 0; }
  to { top: 100%; }
}

@keyframes float {
  0%, 100% { transform: perspective(600px) rotateX(12deg) translateY(-8px); }
  50% { transform: perspective(600px) rotateX(-8deg) translateY(14px); }
}

@keyframes ambientMove {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(100px, -70px, 0) scale(1.25); }
}

@keyframes visualOrbit {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.08); }
}

@keyframes lightBeam {
  from { transform: translateX(-300px) rotate(35deg); }
  to { transform: translateX(800px) rotate(35deg); }
}

@keyframes logoPulse {
  50% { box-shadow: 0 0 38px color-mix(in srgb, var(--neon) 65%, transparent); }
}

@keyframes statusBlink {
  50% { opacity: .35; transform: scale(.65); }
}

@media (max-width: 900px) {
  .hero-grid {
    gap: 25px;
  }

  .benefits-grid,
  .product-grid,
  .skeleton-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .arrival-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .container {
    width: calc(100% - 28px);
  }

  .header-main {
    flex-wrap: wrap;
  }

  .account-link {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .country-select select {
    width: 22px;
    font-size: 0;
  }

  .country-select option {
    font-size: 13px;
  }

  .search-form {
    position: absolute;
    top: 72px;
    right: 14px;
    left: 14px;
    max-width: none;
  }

  .search-form button {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .main-nav.open {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: block;
    background: var(--surface-glass);
    backdrop-filter: blur(22px);
  }

  .nav-inner {
    flex-direction: column;
    gap: 0;
    padding: 8px 14px;
  }

  .nav-inner a {
    padding: 12px 0;
  }

  .hero {
    margin-top: 52px;
  }

  .hero-grid {
    display: block;
    padding: 75px 0 45px;
  }

  .hero-copy {
    margin-bottom: 35px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-visual {
    min-height: 285px;
  }

  .benefits-grid,
  .category-grid,
  .product-grid,
  .metrics-grid,
  .skeleton-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 60px 0;
  }

  .section-heading {
    display: block;
  }

  .product-tools {
    justify-content: space-between;
    margin-top: 20px;
  }

  .category-card {
    min-height: 145px;
    padding: 15px;
  }

  .product-image {
    height: 145px;
    font-size: 50px;
  }

  .product-info {
    padding: 11px;
  }

  .product-actions a {
    display: none;
  }

  .offer-content,
  .newsletter-content,
  .help-content {
    display: block;
  }

  .offer-content .button,
  .help-content .button {
    margin-top: 22px;
  }

  .newsletter form {
    width: 100%;
    margin-top: 24px;
  }

  .country-grid {
    grid-template-columns: 1fr;
  }

  .arrival-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px 10px;
  }

  .arrival-card {
    display: block;
  }

  .arrival-image {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
    line-height: 2;
  }

  .footer-bottom span {
    display: block;
  }
}

/* ===== EFECTOS EXTRA: partículas, nubes, entrada hero, brillo botones ===== */

#ibParticles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#ibParticles i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: hsl(var(--hue), 90%, 60%);
  opacity: .28;
  filter: blur(1px);
  box-shadow: 0 0 8px hsl(var(--hue), 90%, 60%);
  animation: ibParticleFloat var(--d) ease-in-out infinite alternate var(--delay);
}

@keyframes ibParticleFloat {
  0% { transform: translate3d(0, 0, 0); opacity: .18; }
  100% { transform: translate3d(0, -45px, 0); opacity: .36; }
}

.hero-cloud {
  position: absolute;
  z-index: 0;
  width: 340px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 143, 160, .10), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  animation: ibCloudDrift 22s ease-in-out infinite alternate;
}

.hero-cloud.cloud-one {
  top: 10%;
  left: -120px;
  animation-duration: 26s;
  animation-delay: -4s;
}

.hero-cloud.cloud-two {
  bottom: 12%;
  right: -140px;
  background: radial-gradient(ellipse at center, rgba(232, 93, 25, .09), transparent 70%);
  animation-duration: 30s;
  animation-delay: -10s;
}

@keyframes ibCloudDrift {
  0% { transform: translateX(0) scale(1); }
  100% { transform: translateX(90px) scale(1.08); }
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: ibHeroFadeIn .9s cubic-bezier(.2, .8, .2, 1) forwards;
}

.hero-copy .eyebrow { animation-delay: .15s; }
.hero-copy h1 { animation-delay: .28s; }
.hero-copy p { animation-delay: .42s; }
.hero-copy .hero-actions { animation-delay: .56s; }
.hero-copy .hero-status { animation-delay: .7s; }

.hero-visual {
  opacity: 0;
  transform: translateX(40px) scale(.98);
  animation: ibHeroVisualIn 1s cubic-bezier(.2, .8, .2, 1) .25s forwards;
}

@keyframes ibHeroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ibHeroVisualIn {
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.button-primary,
.button-outline,
.search-form button,
.add-button {
  position: relative;
  overflow: hidden;
}

.button-primary::after,
.button-outline::after,
.search-form button::after,
.add-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-22deg);
  animation: ibButtonShine 4.5s ease-in-out infinite;
}

.button-outline::after { animation-delay: 1.2s; }
.search-form button::after { animation-delay: .6s; }
.add-button::after { animation-delay: 1.8s; }

@keyframes ibButtonShine {
  0% { left: -120%; }
  20%, 100% { left: 180%; }
}

/* ===== PRODUCT DETAIL (demo visual) ===== */
.modal-card.product-detail-card {
  width: min(1140px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.modal-card.product-detail-card .modal-head {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--surface);
}

#detailBody {
  padding: 0;
}

.ibProductDemo {
  color: var(--text);
}

.ibProductDemo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px 0;
}

.ibProductDemo-topbar .logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font: 18px/1 var(--font-ui);
  letter-spacing: -1px;
  text-decoration: none;
}

.ibProductDemo-back {
  color: var(--neon);
  font: 12px monospace;
  text-decoration: none;
}

.ibProductDemo-back:hover {
  text-decoration: underline;
}

.ibProductDemo-presentation {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: stretch;
  padding: 22px 28px 28px;
}

.ibProductDemo-visual,
.ibProductDemo-info,
.ibProductDemo-feature,
.ibProductDemo-specs {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.025)),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(135%);
}

.ibProductDemo-visual {
  position: relative;
  display: grid;
  min-height: 460px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  isolation: isolate;
}

.ibProductDemo-visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,255,204,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,204,.07) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: linear-gradient(transparent, #000 20%, #000 80%, transparent);
}

.ibProductDemo-visual::after {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid color-mix(in srgb, var(--neon) 42%, transparent);
  border-radius: 50%;
  content: "";
  animation: ibProductOrbit 13s linear infinite;
}

.ibProductDemo-orb {
  position: relative;
  z-index: 1;
  display: grid;
  width: 200px;
  height: 200px;
  place-items: center;
  border: 1px solid var(--neon);
  border-radius: 50%;
  color: var(--neon);
  background: rgba(0,255,204,.1);
  box-shadow:
    0 0 75px color-mix(in srgb, var(--neon) 35%, transparent),
    inset 0 0 45px rgba(0,255,204,.2);
  font-size: 78px;
  animation: ibProductFloat 4s ease-in-out infinite;
  overflow: hidden;
}

.ibProductDemo-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ibProductDemo-image {
  position: relative;
  z-index: 1;
  display: grid;
  width: 84%;
  height: 84%;
  place-items: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  animation: ibProductFloat 4s ease-in-out infinite;
}

.ibProductDemo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, .22));
}

.ibProductDemo-tag {
  position: absolute;
  z-index: 2;
  color: var(--muted);
  font: 10px monospace;
  letter-spacing: 1px;
}

.ibProductDemo-tag.top { top: 22px; left: 24px; }
.ibProductDemo-tag.bottom { right: 24px; bottom: 22px; color: var(--orange); }

.ibProductDemo-info {
  padding: 32px;
  border-radius: var(--radius-lg);
}

.ibProductDemo-info .kicker {
  display: inline-block;
  margin-bottom: 12px;
}

.ibProductDemo-info h2 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: .98;
  letter-spacing: -2px;
}

.ibProductDemo-info > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.ibProductDemo-price {
  margin: 24px 0;
  color: var(--neon);
  font-size: 30px;
  font-weight: bold;
}

.ibProductDemo-price small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font: 11px monospace;
}

.ibProductDemo-rate {
  margin: -18px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.ibProductDemo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.ibProductDemo-actions .btn {
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ibProductDemo-actions .btn.primary {
  border: 1px solid var(--neon);
  color: #0b1a24;
  background: var(--neon);
}

.ibProductDemo-actions .btn.outline {
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
}

.ibProductDemo-actions .btn.outline:hover {
  border-color: var(--neon);
  color: var(--neon);
}

.ibProductDemo-actions .btn.green {
  border: 1px solid var(--neon);
  color: var(--neon);
  background: rgba(0,255,204,.08);
}

.ibProductDemo-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.ibProductDemo-metaItem {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04);
}

.ibProductDemo-metaItem span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font: 10px monospace;
}

.ibProductDemo-metaItem strong {
  color: var(--text);
  font-size: 13px;
}

.ibProductDemo-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 0 28px 32px;
}

.ibProductDemo-feature,
.ibProductDemo-specs {
  padding: 25px;
  border-radius: var(--radius-md);
}

.ibProductDemo-feature h3,
.ibProductDemo-specs h3 {
  margin: 0 0 18px;
  font-size: 20px;
}

.ibProductDemo-feature ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ibProductDemo-feature li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.ibProductDemo-feature li::before {
  color: var(--neon);
  content: "✦";
}

.ibProductDemo-specRow {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.ibProductDemo-specRow:last-child { border-bottom: 0; }

.ibProductDemo-specRow strong {
  color: var(--text);
  text-align: right;
}

.ibProductDemo-gallery {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  max-width: 90%;
  overflow-x: auto;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
}

.ibProductDemo-gallery button {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
}

.ibProductDemo-gallery button.active {
  border-color: var(--neon);
}

.ibProductDemo-gallery button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ibProductDemo-variants {
  margin: 14px 0;
}

.ibProductDemo-variants > b {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--muted);
}

.ibProductDemo-variants > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ibProductDemo-variants button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 12px;
}

.ibProductDemo-variants button.active {
  border-color: var(--neon);
  background: rgba(0,255,204,.08);
}

.ibProductDemo-tabs {
  display: flex;
  gap: 8px;
  margin: 18px 0 12px;
  border-bottom: 1px solid var(--line);
}

.ibProductDemo-tabs button {
  padding: 10px 14px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
}

.ibProductDemo-tabs button.active {
  color: var(--neon);
  border-bottom-color: var(--neon);
}

.ibProductDemo-panels {
  min-height: 80px;
}

.ibProductDemo-panel {
  display: none;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.ibProductDemo-panel.active {
  display: block;
}

.ibProductDemo-panel p {
  margin: 0;
}

@keyframes ibProductFloat {
  0%, 100% { transform: translateY(-10px) rotateX(8deg); }
  50% { transform: translateY(12px) rotateX(-8deg); }
}

@keyframes ibProductOrbit {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.08); }
}

@media (max-width: 860px) {
  .ibProductDemo-presentation,
  .ibProductDemo-bottom {
    grid-template-columns: 1fr;
  }

  .ibProductDemo-visual {
    min-height: 340px;
  }

  .ibProductDemo-orb {
    width: 160px;
    height: 160px;
    font-size: 62px;
  }

  .ibProductDemo-image {
    width: 88%;
    height: 88%;
  }

  .ibProductDemo-image img {
    padding: 12px;
  }

  .ibProductDemo-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

/* ===== CATEGORY STRIP (compact) ===== */
.category-strip {
  padding: 14px 0;
  border-block: 1px solid var(--line);
  background: rgba(15, 70, 78, .03);
}

.category-strip-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.category-strip-label {
  flex-shrink: 0;
  color: var(--muted);
  font: 11px monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-chip {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 12px;
  cursor: pointer;
  transition: all .2s ease;
}

.category-chip:hover,
.category-chip.active {
  border-color: var(--neon);
  background: rgba(0, 255, 204, .08);
  color: var(--neon);
}

.category-chip:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.skeleton-chip {
  background: linear-gradient(90deg, var(--surface) 25%, rgba(255,255,255,.2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: ibSkeletonShimmer 1.2s infinite;
}

@keyframes ibSkeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== FOOTER FULL ===== */
.footer {
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr 1fr;
  gap: 30px;
  padding-bottom: 45px;
}

.footer-brand p {
  max-width: 260px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--neon);
  font: 11px monospace;
  letter-spacing: 1px;
}

.footer-grid > div:not(:first-child) a,
.footer-note {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.footer-grid a:hover {
  color: var(--neon);
}

.footer-note {
  color: var(--muted);
  opacity: .8;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--neon);
  font-size: 10px;
  transition: all .2s ease;
}

.socials a:hover {
  border-color: var(--neon);
  background: rgba(0, 255, 204, .08);
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  flex-wrap: wrap;
}

.payment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-chips span {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  color: var(--muted);
  font: 10px monospace;
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--neon);
}

/* ===== PRODUCT MODERN PALETTE ===== */
.ibProductDemo-palette {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.04);
}

.ibProductDemo-palette > b {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.ibProductDemo-palette .swatches {
  display: flex;
  gap: 10px;
}

.ibProductDemo-palette button {
  position: relative;
  width: 32px;
  height: 32px;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.ibProductDemo-palette button:hover {
  transform: scale(1.12);
}

.ibProductDemo-palette button.active {
  border-color: var(--text);
  box-shadow: 0 0 0 2px var(--surface), 0 0 0 3px var(--neon);
}

.ibProductDemo-palette button span {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}

.ibProductDemo-palette button:hover span,
.ibProductDemo-palette button.active span {
  opacity: 1;
}

.ibProductDemo-info {
  position: relative;
  overflow: hidden;
}

.ibProductDemo-info::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,204,.12), transparent 70%);
  pointer-events: none;
}

.ibProductDemo-visual {
  background:
    radial-gradient(circle at 30% 30%, rgba(0,255,204,.12), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(255,107,0,.08), transparent 45%),
    linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.025)),
    var(--surface);
}

.ibProductDemo-actions .btn.primary {
  background: linear-gradient(135deg, var(--neon), #0dcfb3);
  border: 0;
  box-shadow: 0 4px 18px rgba(0,255,204,.25);
}

.ibProductDemo-actions .btn.green {
  background: linear-gradient(135deg, rgba(0,255,204,.12), rgba(0,255,204,.04));
}

.ibProductDemo-feature,
.ibProductDemo-specs {
  position: relative;
  overflow: hidden;
}

.ibProductDemo-feature::before,
.ibProductDemo-specs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--neon), transparent);
  opacity: .5;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .ibProductDemo-presentation,
  .ibProductDemo-bottom {
    grid-template-columns: 1fr;
  }

  .ibProductDemo-visual {
    min-height: 340px;
  }

  .ibProductDemo-orb {
    width: 160px;
    height: 160px;
    font-size: 62px;
  }

  .ibProductDemo-image {
    width: 88%;
    height: 88%;
  }

  .ibProductDemo-image img {
    padding: 12px;
  }

  .ibProductDemo-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .category-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .category-chips {
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
    padding-bottom: 4px;
  }

  .category-chip {
    flex-shrink: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-payments {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ibProductDemo-orb,
  .ibProductDemo-visual::after {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: .01ms !important;
  }
}

/* ===== UI/UX ENHANCEMENTS v2026.08.16 ===== */

/* Hero floating product layers */
.hero-product-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
  z-index: 1;
}

.hero-float-img {
  position: absolute;
  max-width: 46%;
  max-height: 46%;
  object-fit: contain;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, .28));
  opacity: .92;
}

.layer-back .img-cnc {
  top: 6%;
  right: -2%;
  animation: heroFloatBack 7s ease-in-out infinite;
}

.layer-mid .img-servomotor {
  bottom: 8%;
  left: -4%;
  max-width: 40%;
  animation: heroFloatMid 6s ease-in-out infinite;
  animation-delay: -2s;
}

.layer-front .img-laptop {
  top: 18%;
  left: 12%;
  max-width: 52%;
  z-index: 2;
  animation: heroFloatFront 5s ease-in-out infinite;
  animation-delay: -1s;
}

@keyframes heroFloatBack {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

@keyframes heroFloatMid {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes heroFloatFront {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}

/* Product cards glass depth */
.product-card-glass {
  border: 1px solid color-mix(in srgb, var(--neon) 22%, var(--line));
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .22)),
    var(--surface);
  box-shadow:
    0 4px 18px rgba(25, 65, 80, .06),
    0 18px 46px rgba(25, 65, 80, .08),
    inset 0 1px 0 rgba(255, 255, 255, .35);
  backdrop-filter: blur(16px) saturate(140%);
  transform-style: preserve-3d;
}

[data-theme="dark"] .product-card-glass {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)),
    var(--surface);
  box-shadow:
    0 4px 18px rgba(0, 0, 0, .18),
    0 18px 46px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}

.product-card-glass:hover {
  border-color: color-mix(in srgb, var(--neon) 55%, transparent);
  box-shadow:
    0 10px 32px color-mix(in srgb, var(--neon) 12%, transparent),
    0 26px 60px rgba(25, 65, 80, .12);
}

/* Compact section spacing utility */
.section-compact {
  padding: 52px 0;
}

.section-compact .center-heading {
  margin-bottom: 28px;
}

.section-compact .country-grid {
  margin-top: 18px;
}

/* Phosphor icons in category chips */
.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.category-chip i.ph {
  font-size: 15px;
  color: var(--neon);
}

.category-chip:hover i.ph,
.category-chip.active i.ph {
  color: var(--orange);
}

/* Responsive hero layers */
@media (max-width: 860px) {
  .hero-float-img {
    max-width: 44%;
    max-height: 44%;
  }

  .layer-back .img-cnc {
    top: 4%;
    right: -4%;
  }

  .layer-mid .img-servomotor {
    bottom: 4%;
    left: -6%;
  }

  .layer-front .img-laptop {
    top: 16%;
    left: 6%;
  }
}

@media (max-width: 560px) {
  .hero-visual {
    min-height: 340px;
  }

  .hero-float-img {
    max-width: 48%;
    max-height: 48%;
  }

  .layer-back .img-cnc {
    top: 2%;
    right: -8%;
  }

  .layer-mid .img-servomotor {
    bottom: 2%;
    left: -10%;
  }

  .layer-front .img-laptop {
    top: 14%;
    left: 2%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-float-img {
    animation: none !important;
  }
}

/* ===== WIZARD DE PUBLICACIÓN V4.0 ===== */
.ibWizardPanel {
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04)), var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(140%);
  padding: 28px;
  max-width: 780px;
  margin: 0 auto;
}

.ibWizardHead {
  margin-bottom: 24px;
}
.ibWizardHead h2 {
  font-size: 1.6rem;
  letter-spacing: -1px;
  margin: 0 0 6px;
}
.ibWizardHead p {
  color: var(--muted);
  margin: 0;
  font-size: .95rem;
}

.ibWizardProgress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.ibWizardProgress span {
  font-size: .78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ibWizardStepDot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .8rem;
  font-weight: 700;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  color: var(--muted);
}
.ibWizardStepDot.active {
  background: var(--neon);
  color: #051418;
  border-color: var(--neon);
  box-shadow: 0 0 18px color-mix(in srgb, var(--neon) 45%, transparent);
}

.ibWizardModeGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ibWizardModeCard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
  text-align: left;
}
.ibWizardModeCard:hover {
  transform: translateY(-3px);
  border-color: var(--neon);
  box-shadow: 0 10px 28px rgba(0,0,0,.18), 0 0 20px color-mix(in srgb, var(--neon) 22%, transparent);
  background: rgba(255,255,255,.1);
}
.ibWizardModeCard.ve { border-top: 3px solid var(--neon); }
.ibWizardModeCard.co { border-top: 3px solid var(--orange); }
.ibWizardModeCard.both { border-top: 3px solid color-mix(in srgb, var(--neon) 50%, var(--orange)); }
.ibWizardModeCard b { font-size: 1.05rem; }
.ibWizardModeCard span { font-size: .8rem; color: var(--muted); }
.ibWizardModeCard small { font-size: .72rem; color: var(--muted); }

.ibWizardForm {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}
.ibWizardForm label {
  font-size: .82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: -8px;
}
.ibWizardForm .input,
.ibWizardForm .textarea {
  width: 100%;
  background: rgba(0,0,0,.12);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-size: .95rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.ibWizardForm .input:focus,
.ibWizardForm .textarea:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--neon) 18%, transparent);
}
.ibWizardForm .textarea {
  min-height: 100px;
  resize: vertical;
}

.ibWizardCountryBox {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.05);
  margin-bottom: 8px;
}
.ibWizardCountryBox.ve { border-left: 4px solid var(--neon); }
.ibWizardCountryBox.co { border-left: 4px solid var(--orange); }
.ibWizardCountryBox h4 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.ibWizardActions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}

.ibWizardPreview {
  min-height: 180px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.1);
  overflow: hidden;
  color: var(--muted);
  font-size: .9rem;
}
.ibWizardPreview img {
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
  display: block;
}
.ibWizardPreviewError {
  color: #ff6b6b;
  font-size: .85rem;
  padding: 12px;
}

@media (max-width: 720px) {
  .ibWizardModeGrid {
    grid-template-columns: 1fr;
  }
  .ibWizardPanel {
    padding: 20px;
  }
  .ibWizardActions {
    flex-direction: column-reverse;
  }
  .ibWizardActions .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ===== PRODUCT PAGE — Modern Minimal (Diseño 1) ===== */
.ibProductPage {
  background: #ffffff;
  color: #0f172a;
  padding: 32px 0 90px;
  min-height: 100vh;
}

.ibProductPage .container {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}

.ibProductPage-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #526c73;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 28px;
  text-decoration: none;
}

.ibProductPage-back:hover {
  color: var(--neon);
}

.ibProductPage-back i {
  font-size: 16px;
}

.ibProductPage-grid {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 64px;
  align-items: start;
}

/* Gallery */
.ibProductPage-gallery {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.ibProductPage-mainImage {
  aspect-ratio: 1 / 1;
  background: #f7f9fb;
  border-radius: 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #edf0f3;
}

.ibProductPage-mainImage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 48px;
  cursor: zoom-in;
}

.ibProductPage-placeholder {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #e8f9fa;
  color: var(--neon);
  display: grid;
  place-items: center;
  font-size: 52px;
}

.ibProductPage-thumbs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.ibProductPage-thumbs button {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  border: 2px solid transparent;
  background: #f7f9fb;
  overflow: hidden;
  cursor: pointer;
  padding: 4px;
  transition: border-color .2s, transform .2s;
}

.ibProductPage-thumbs button:hover {
  transform: translateY(-2px);
}

.ibProductPage-thumbs button.active {
  border-color: var(--neon);
}

.ibProductPage-thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

/* Info column */
.ibProductPage-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 8px;
}

.ibProductPage-category {
  display: inline-flex;
  width: fit-content;
  color: var(--neon);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ibProductPage-title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 900;
  line-height: 1.1;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.02em;
}

.ibProductPage-price {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.ibProductPage-priceMain {
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 950;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -0.03em;
}

.ibProductPage-priceMain.ibProductPage-priceConsult {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  color: #526c73;
}

.ibProductPage-conversions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #526c73;
  font-size: 14px;
  font-weight: 700;
}

.ibProductPage-conversions span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ibProductPage-conversions i {
  color: var(--neon);
  font-size: 18px;
}

.ibProductPage-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 14px;
  font-weight: 700;
  color: #16815d;
}

.ibProductPage-stock.low {
  color: #b45309;
}

.ibProductPage-stock.out {
  color: #b43c3c;
}

.ibProductPage-stock::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

/* Variants */
.ibProductPage-variants {
  margin-top: 4px;
}

.ibProductPage-variants > span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #526c73;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ibProductPage-variants > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ibProductPage-variants button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.ibProductPage-variants button:hover {
  border-color: var(--neon);
}

.ibProductPage-variants button.active {
  border-color: var(--neon);
  background: rgba(0, 143, 160, 0.06);
}

.ibProductPage-colorDot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

/* Actions */
.ibProductPage-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.ibProductPage-btnPrimary,
.ibProductPage-btnOutline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 56px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  border: none;
}

.ibProductPage-btnPrimary {
  background: var(--neon);
  color: #ffffff;
}

.ibProductPage-btnPrimary:hover {
  background: #007a8a;
  transform: translateY(-1px);
}

.ibProductPage-btnPrimary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ibProductPage-btnOutline {
  background: #ffffff;
  color: #0f172a;
  border: 1.5px solid #e5e7eb;
}

.ibProductPage-btnOutline:hover {
  border-color: var(--neon);
  color: var(--neon);
}

.ibProductPage-secondary {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding-top: 4px;
}

.ibProductPage-secondary button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: #526c73;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s;
}

.ibProductPage-secondary button:hover {
  color: var(--neon);
}

.ibProductPage-secondary i {
  font-size: 18px;
}

/* Trust */
.ibProductPage-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid #edf0f3;
}

.ibProductPage-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #526c73;
  font-size: 13px;
  font-weight: 700;
}

.ibProductPage-trust i {
  color: var(--neon);
  font-size: 20px;
}

/* Lower sections */
.ibProductPage-section {
  margin-top: 72px;
}

.ibProductPage-section h2 {
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.ibProductPage-section > p {
  color: #526c73;
  line-height: 1.75;
  font-size: 15px;
  max-width: 760px;
}

.ibProductPage-featureList {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.ibProductPage-featureList li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #526c73;
  font-size: 15px;
  line-height: 1.5;
}

.ibProductPage-featureList li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  margin-top: 9px;
  flex-shrink: 0;
}

.ibProductPage-featureGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ibProductPage-featureGrid > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #f7f9fb;
  border-radius: 18px;
}

.ibProductPage-featureGrid i {
  color: var(--neon);
  font-size: 24px;
  flex-shrink: 0;
}

.ibProductPage-featureGrid b {
  display: block;
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}

.ibProductPage-featureGrid span {
  color: #526c73;
  font-size: 13px;
  line-height: 1.45;
}

.ibProductPage-specsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid #edf0f3;
  border-radius: 18px;
  overflow: hidden;
  max-width: 760px;
}

.ibProductPage-specRow {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid #edf0f3;
  border-right: 1px solid #edf0f3;
  font-size: 14px;
}

.ibProductPage-specRow:nth-child(2n) {
  border-right: none;
}

.ibProductPage-specRow span {
  color: #526c73;
}

.ibProductPage-specRow strong {
  color: #0f172a;
  font-weight: 800;
  text-align: right;
}

.ibProductPage-video {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  background: #f7f9fb;
  max-width: 900px;
}

.ibProductPage-video iframe,
.ibProductPage-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ibProductPage-related {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ibProductPage-relatedCard {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #edf0f3;
  border-radius: 20px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.ibProductPage-relatedCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(15, 35, 63, 0.08);
  border-color: rgba(0, 143, 160, 0.3);
}

.ibProductPage-relatedImg {
  aspect-ratio: 1 / 1;
  background: #f7f9fb;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--neon);
  font-size: 36px;
}

.ibProductPage-relatedImg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.ibProductPage-relatedCard b {
  padding: 0 16px;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
}

.ibProductPage-relatedCard span {
  padding: 0 16px 16px;
  font-size: 15px;
  font-weight: 900;
  color: var(--neon);
}

/* Responsive */
@media (max-width: 1024px) {
  .ibProductPage-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ibProductPage-gallery {
    position: static;
  }

  .ibProductPage-featureGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ibProductPage-related {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ibProductPage {
    padding: 20px 0 70px;
  }

  .ibProductPage .container {
    width: calc(100% - 32px);
  }

  .ibProductPage-back {
    margin-bottom: 20px;
  }

  .ibProductPage-title {
    font-size: 28px;
  }

  .ibProductPage-mainImage {
    border-radius: 20px;
  }

  .ibProductPage-mainImage img {
    padding: 28px;
  }

  .ibProductPage-actions {
    position: sticky;
    bottom: 0;
    background: #ffffff;
    padding: 14px 0;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.05);
    z-index: 10;
  }

  .ibProductPage-featureGrid {
    grid-template-columns: 1fr;
  }

  .ibProductPage-specsGrid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .ibProductPage-specRow {
    border-right: none;
  }

  .ibProductPage-related {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================
   IMPORT BEAR — NUEVA HOME E-COMMERCE PROFESIONAL
   ========================================================== */

/* Variables de marca */
:root {
  --ib-black: #0f1215;
  --ib-gold: #c8a44a;
  --ib-gold-light: #e3c373;
  --ib-cyan: #0aa3b5;
  --ib-cyan-dark: #078192;
  --ib-white: #ffffff;
  --ib-gray-50: #f8f9fa;
  --ib-gray-100: #f1f3f5;
  --ib-gray-200: #e9ecef;
  --ib-gray-300: #dee2e6;
  --ib-gray-500: #6c757d;
  --ib-gray-700: #495057;
  --ib-gray-900: #212529;
  --ib-radius-sm: 12px;
  --ib-radius-md: 16px;
  --ib-radius-lg: 22px;
  --ib-shadow-sm: 0 2px 8px rgba(15, 18, 21, 0.06);
  --ib-shadow-md: 0 8px 24px rgba(15, 18, 21, 0.08);
  --ib-shadow-lg: 0 18px 48px rgba(15, 18, 21, 0.1);
  --ib-transition: 0.2s ease;
}

body {
  background: #f8f9fa;
  color: var(--ib-gray-900);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

/* Contenedor restringido */
.container {
  width: min(1320px, calc(100% - 40px));
  margin-inline: auto;
}

/* Utilidades */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Topbar */
.ib-topbar {
  background: var(--ib-black);
  color: #d1d5db;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 0;
}

.ib-topbar .container {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.ib-topbar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ib-topbar i {
  color: var(--ib-gold);
  font-size: 14px;
}

@media (max-width: 640px) {
  .ib-topbar .container {
    gap: 12px 24px;
  }
  .ib-topbar span:nth-child(3) {
    display: none;
  }
}

/* Header */
.ib-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--ib-gray-200);
  backdrop-filter: blur(16px);
}

.ib-header-main {
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 80px;
  padding: 14px 0;
}

.ib-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ib-black);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.ib-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.ib-logo b {
  color: var(--ib-gold);
  font-weight: 900;
}

.ib-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 560px;
  width: 100%;
  height: 50px;
  padding: 0 6px 0 18px;
  border: 1.5px solid var(--ib-gray-300);
  border-radius: 999px;
  background: var(--ib-gray-50);
  margin: 0 auto;
  transition: border-color var(--ib-transition), box-shadow var(--ib-transition);
}

.ib-search-form:focus-within {
  border-color: var(--ib-cyan);
  background: var(--ib-white);
  box-shadow: 0 0 0 4px rgba(10, 163, 181, 0.1);
}

.ib-search-form i {
  color: var(--ib-gray-500);
  font-size: 20px;
}

.ib-search-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ib-gray-900);
  font-size: 15px;
}

.ib-search-form input::placeholder {
  color: var(--ib-gray-500);
}

.ib-search-form button {
  height: 38px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--ib-cyan);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--ib-transition);
}

.ib-search-form button:hover {
  background: var(--ib-cyan-dark);
}

.ib-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ib-country-select {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  height: 42px;
  border: 1px solid var(--ib-gray-300);
  border-radius: 10px;
  background: var(--ib-white);
  color: var(--ib-gray-700);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.ib-country-select select {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ib-gray-900);
  font-weight: 700;
  max-width: 110px;
}

.ib-account-link,
.ib-cart-button,
.ib-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--ib-gray-300);
  border-radius: 10px;
  background: var(--ib-white);
  color: var(--ib-gray-900);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--ib-transition), color var(--ib-transition);
}

.ib-account-link:hover,
.ib-cart-button:hover,
.ib-menu-toggle:hover {
  border-color: var(--ib-cyan);
  color: var(--ib-cyan);
}

.ib-account-link i,
.ib-cart-button i,
.ib-menu-toggle i {
  font-size: 20px;
}

.ib-cart-button {
  position: relative;
}

.ib-cart-button b {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--ib-cyan);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.ib-menu-toggle {
  display: none;
}

/* Navegación principal */
.ib-main-nav {
  border-top: 1px solid var(--ib-gray-200);
}

.ib-nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ib-nav-inner::-webkit-scrollbar {
  display: none;
}

.ib-nav-inner a {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ib-gray-700);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--ib-transition), background var(--ib-transition);
}

.ib-nav-inner a:hover,
.ib-nav-inner a.active {
  color: var(--ib-cyan);
  background: rgba(10, 163, 181, 0.06);
}

@media (max-width: 1024px) {
  .ib-header-main {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }
}

@media (max-width: 860px) {
  .ib-header-main {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    min-height: auto;
    padding: 10px 0 14px;
  }

  .ib-search-form {
    order: 3;
    grid-column: 1 / -1;
    max-width: 100%;
    height: 44px;
  }

  .ib-account-link span,
  .ib-cart-button span,
  .ib-country-select span {
    display: none;
  }

  .ib-account-link,
  .ib-cart-button,
  .ib-country-select,
  .ib-menu-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
  }

  .ib-country-select select {
    max-width: 42px;
    font-size: 0;
  }

  .ib-country-select option {
    font-size: 14px;
  }

  .ib-main-nav {
    display: none;
  }

  .ib-main-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ib-white);
    border-bottom: 1px solid var(--ib-gray-200);
    box-shadow: var(--ib-shadow-md);
  }

  .ib-main-nav.open .ib-nav-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0;
  }

  .ib-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .ib-logo span {
    font-size: 15px;
  }

  .ib-logo img {
    width: 34px;
    height: 34px;
  }
}

/* Hero */
.ib-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 64px 0 80px;
}

.ib-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ib-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ib-hero-badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(10, 163, 181, 0.1);
  color: var(--ib-cyan-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ib-hero-copy h1 {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 950;
  line-height: 1.08;
  color: var(--ib-black);
  letter-spacing: -0.03em;
  margin: 0;
}

.ib-hero-copy h1 em {
  font-style: normal;
  color: var(--ib-cyan);
}

.ib-hero-copy > p {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ib-gray-700);
  line-height: 1.65;
  max-width: 520px;
  margin: 0;
}

.ib-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.ib-btn-primary,
.ib-btn-outline,
.ib-btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--ib-transition), box-shadow var(--ib-transition), background var(--ib-transition), border-color var(--ib-transition);
  border: none;
}

.ib-btn-primary {
  background: var(--ib-cyan);
  color: #fff;
  box-shadow: 0 10px 24px rgba(10, 163, 181, 0.28);
}

.ib-btn-primary:hover {
  background: var(--ib-cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(10, 163, 181, 0.35);
}

.ib-btn-outline {
  background: transparent;
  color: var(--ib-gray-900);
  border: 1.5px solid var(--ib-gray-300);
}

.ib-btn-outline:hover {
  border-color: var(--ib-cyan);
  color: var(--ib-cyan);
}

.ib-btn-light {
  background: #fff;
  color: var(--ib-cyan-dark);
  box-shadow: var(--ib-shadow-sm);
}

.ib-btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--ib-shadow-md);
}

.ib-hero-benefits {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.ib-hero-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ib-gray-700);
  font-size: 13px;
  font-weight: 700;
}

.ib-hero-benefits i {
  color: var(--ib-cyan);
  font-size: 18px;
}

.ib-hero-visual {
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: var(--ib-radius-lg);
  border: 1px solid var(--ib-gray-200);
  box-shadow: var(--ib-shadow-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.ib-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

@media (max-width: 1024px) {
  .ib-hero-grid {
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .ib-hero {
    padding: 40px 0 60px;
  }

  .ib-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ib-hero-copy {
    order: 1;
  }

  .ib-hero-visual {
    order: 2;
    aspect-ratio: 16 / 10;
  }

  .ib-hero-actions {
    flex-direction: column;
  }

  .ib-hero-actions a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ib-hero-benefits {
    gap: 12px;
  }

  .ib-hero-visual img {
    padding: 16px;
  }
}

/* Sections */
.ib-section {
  padding: 72px 0;
  background: #fff;
}

.ib-section-muted {
  background: var(--ib-gray-50);
}

.ib-section-heading {
  margin-bottom: 36px;
}

.ib-section-heading span {
  display: block;
  color: var(--ib-cyan-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ib-section-heading h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  color: var(--ib-black);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.ib-section-heading p {
  color: var(--ib-gray-700);
  font-size: 16px;
  margin: 0;
}

/* Category grid */
.ib-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ib-category-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--ib-gray-200);
  border-radius: var(--ib-radius-md);
  background: #fff;
  color: var(--ib-gray-900);
  font-size: 15px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--ib-transition), transform var(--ib-transition), box-shadow var(--ib-transition);
  box-shadow: var(--ib-shadow-sm);
}

.ib-category-card:hover,
.ib-category-card.active {
  border-color: var(--ib-cyan);
  transform: translateY(-4px);
  box-shadow: var(--ib-shadow-md);
}

.ib-category-card i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(10, 163, 181, 0.08);
  color: var(--ib-cyan);
  font-size: 22px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .ib-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .ib-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ib-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ib-category-card {
    padding: 14px;
    font-size: 13px;
  }

  .ib-category-card i {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* Benefits bar */
.ib-benefits-bar {
  background: var(--ib-black);
  color: #fff;
  padding: 38px 0;
}

.ib-benefits-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ib-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ib-benefit-item i {
  color: var(--ib-gold);
  font-size: 28px;
  flex-shrink: 0;
}

.ib-benefit-item b {
  display: block;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 3px;
}

.ib-benefit-item span {
  color: #adb5bd;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .ib-benefits-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .ib-benefits-bar .container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .ib-benefits-bar .container::-webkit-scrollbar {
    display: none;
  }

  .ib-benefit-item {
    flex: 0 0 220px;
  }
}

/* Product grid */
.ib-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ib-product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ib-gray-200);
  border-radius: var(--ib-radius-lg);
  overflow: hidden;
  box-shadow: var(--ib-shadow-sm);
  transition: transform var(--ib-transition), box-shadow var(--ib-transition), border-color var(--ib-transition);
  cursor: pointer;
}

.ib-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ib-shadow-md);
  border-color: rgba(10, 163, 181, 0.3);
}

.ib-product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f8f9fa;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.ib-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform var(--ib-transition);
}

.ib-product-card:hover .ib-product-image img {
  transform: scale(1.04);
}

.ib-product-noimage {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e9ecef;
  color: var(--ib-cyan);
  display: grid;
  place-items: center;
  font-size: 28px;
}

.ib-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--ib-cyan);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ib-product-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  flex: 1;
}

.ib-product-category {
  color: var(--ib-cyan-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ib-product-body h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ib-black);
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
}

.ib-product-sku {
  color: var(--ib-gray-500);
  font-size: 11px;
}

.ib-product-price {
  font-size: 18px;
  font-weight: 950;
  color: var(--ib-black);
  margin-top: auto;
}

.ib-product-stock {
  font-size: 12px;
  font-weight: 700;
  color: #16815d;
}

.ib-product-stock.out {
  color: #b43c3c;
}

.ib-product-actions {
  margin-top: 6px;
}

.ib-product-actions .ib-btn-primary,
.ib-product-actions .ib-btn-outline {
  width: 100%;
  padding: 12px;
  font-size: 13px;
  border-radius: 10px;
}

@media (max-width: 1200px) {
  .ib-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .ib-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .ib-product-grid {
    grid-template-columns: 1fr;
  }
}

/* Pagination */
.ib-pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.ib-pagination-wrap .pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.ib-pagination-wrap .page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--ib-gray-300);
  border-radius: 10px;
  background: #fff;
  color: var(--ib-gray-700);
  font-weight: 800;
  cursor: pointer;
  transition: var(--ib-transition);
}

.ib-pagination-wrap .page-btn:hover,
.ib-pagination-wrap .page-btn.active {
  border-color: var(--ib-cyan);
  background: var(--ib-cyan);
  color: #fff;
}

.ib-pagination-wrap .page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Industrial section */
.ib-section-industrial {
  background: var(--ib-gray-50);
}

.ib-industrial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ib-industrial-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--ib-gray-200);
  border-radius: var(--ib-radius-lg);
  overflow: hidden;
  box-shadow: var(--ib-shadow-sm);
  transition: transform var(--ib-transition), box-shadow var(--ib-transition), border-color var(--ib-transition);
  cursor: pointer;
}

.ib-industrial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ib-shadow-md);
  border-color: rgba(10, 163, 181, 0.3);
}

.ib-industrial-image {
  aspect-ratio: 1 / 1;
  background: #f8f9fa;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.ib-industrial-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.ib-industrial-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 22px;
}

.ib-industrial-body h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--ib-black);
  line-height: 1.25;
  margin: 0;
}

.ib-industrial-body p {
  color: var(--ib-gray-700);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ib-industrial-body .ib-btn-outline {
  width: fit-content;
  padding: 11px 18px;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .ib-industrial-card {
    grid-template-columns: 1fr;
  }

  .ib-industrial-image {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 768px) {
  .ib-industrial-grid {
    grid-template-columns: 1fr;
  }
}

/* Wholesale banner */
.ib-wholesale-banner {
  background: linear-gradient(135deg, var(--ib-cyan) 0%, var(--ib-cyan-dark) 100%);
  color: #fff;
  padding: 70px 0;
}

.ib-wholesale-content {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.ib-wholesale-content h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 14px;
}

.ib-wholesale-content p {
  font-size: 17px;
  opacity: 0.95;
  margin: 0 0 26px;
}

/* Trust section */
.ib-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ib-trust-card {
  padding: 28px;
  border: 1px solid var(--ib-gray-200);
  border-radius: var(--ib-radius-lg);
  background: #fff;
  box-shadow: var(--ib-shadow-sm);
  transition: transform var(--ib-transition), box-shadow var(--ib-transition);
}

.ib-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ib-shadow-md);
}

.ib-trust-card i {
  color: var(--ib-cyan);
  font-size: 32px;
  margin-bottom: 16px;
}

.ib-trust-card b {
  display: block;
  font-size: 17px;
  font-weight: 900;
  color: var(--ib-black);
  margin-bottom: 6px;
}

.ib-trust-card span {
  color: var(--ib-gray-700);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .ib-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .ib-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* Offer section */
.ib-offer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  border-radius: var(--ib-radius-lg);
  background: #fff;
  border: 1px solid var(--ib-gray-200);
  box-shadow: var(--ib-shadow-sm);
}

.ib-offer-content span {
  display: block;
  color: var(--ib-cyan-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ib-offer-content h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--ib-black);
  margin: 0 0 8px;
}

.ib-offer-content p {
  color: var(--ib-gray-700);
  margin: 0;
}

@media (max-width: 768px) {
  .ib-offer-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* Newsletter */
.ib-newsletter {
  background: var(--ib-gray-50);
}

.ib-newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  border-radius: var(--ib-radius-lg);
  background: var(--ib-black);
  color: #fff;
}

.ib-newsletter-content span {
  display: block;
  color: var(--ib-gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ib-newsletter-content h2 {
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 8px;
}

.ib-newsletter-content p {
  color: #adb5bd;
  margin: 0;
}

.ib-newsletter-content form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 460px;
}

.ib-newsletter-content input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 15px;
}

.ib-newsletter-content input::placeholder {
  color: #adb5bd;
}

.ib-newsletter-content .ib-btn-primary {
  background: var(--ib-gold);
  color: var(--ib-black);
  box-shadow: none;
}

.ib-newsletter-content .ib-btn-primary:hover {
  background: var(--ib-gold-light);
}

@media (max-width: 768px) {
  .ib-newsletter-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .ib-newsletter-content form {
    width: 100%;
    max-width: none;
    flex-direction: column;
  }

  .ib-newsletter-content .ib-btn-primary {
    width: 100%;
  }
}

/* Footer */
.ib-footer {
  background: var(--ib-black);
  color: #d1d5db;
  padding: 64px 0 0;
}

.ib-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.ib-footer-brand .ib-logo {
  color: #fff;
  margin-bottom: 16px;
}

.ib-footer-brand p {
  max-width: 300px;
  font-size: 14px;
  line-height: 1.7;
  color: #adb5bd;
  margin: 0 0 18px;
}

.ib-socials {
  display: flex;
  gap: 10px;
}

.ib-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: var(--ib-transition);
}

.ib-socials a:hover {
  background: var(--ib-gold);
  border-color: var(--ib-gold);
  color: var(--ib-black);
}

.ib-footer h3 {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.ib-footer a,
.ib-footer-note {
  display: block;
  color: #adb5bd;
  font-size: 13px;
  text-decoration: none;
  margin: 10px 0;
  transition: color var(--ib-transition);
}

.ib-footer a:hover {
  color: var(--ib-gold);
}

.ib-footer a[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}

.ib-footer-payments {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  font-size: 13px;
  color: #adb5bd;
}

.ib-footer-payments .payment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ib-footer-payments .payment-chips span {
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 11px;
}

.ib-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 12px;
  color: #6c757d;
  flex-wrap: wrap;
}

.ib-footer-bottom-links {
  display: flex;
  gap: 18px;
}

.ib-footer-bottom-links a {
  color: #6c757d;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .ib-footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .ib-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .ib-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ib-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .ib-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Skeleton */
.ib-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ib-skeleton-card {
  background: #fff;
  border: 1px solid var(--ib-gray-200);
  border-radius: var(--ib-radius-lg);
  overflow: hidden;
}

.ib-sk-img {
  aspect-ratio: 1 / 1;
  background: linear-gradient(90deg, #f1f3f5 25%, #e9ecef 50%, #f1f3f5 75%);
  background-size: 200% 100%;
  animation: ibSkeletonShimmer 1.4s infinite;
}

.ib-sk-body {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.ib-sk-line,
.ib-sk-btn {
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(90deg, #f1f3f5 25%, #e9ecef 50%, #f1f3f5 75%);
  background-size: 200% 100%;
  animation: ibSkeletonShimmer 1.4s infinite;
}

.ib-sk-btn {
  height: 36px;
  margin-top: 8px;
}

@keyframes ibSkeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 1200px) {
  .ib-skeleton-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .ib-skeleton-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .ib-skeleton-grid {
    grid-template-columns: 1fr;
  }
}

/* No results */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  color: var(--ib-gray-700);
  font-size: 15px;
}

/* Legacy overrides */
.announcement,
.site-header,
.main-nav,
.hero,
.benefits,
.category-strip,
.products-section,
.offer-banner,
.country-section,
.help-section,
.trust-section,
body > .newsletter,
body > .footer {
  display: none !important;
}
