/* Layout: header, navigation, mobile nav, and footer */

.logo-full {
  display: block;
  width: auto;
  max-width: 100%;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: var(--r6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(232, 103, 14, .40);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.logo-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}

.logo-name {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .05em;
  line-height: 1;
}

.logo-name em {
  color: var(--orange);
  font-style: normal;
}

.logo-sub {
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--slate-light);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-top: 3px;
}

.search-wrap {
  position: relative;
}

.search-box {
  display: flex;
  align-items: center;
  background: var(--navy-mid);
  border: 1.5px solid rgba(255, 255, 255, .10);
  border-radius: var(--r8);
  height: 48px;
  padding: 0 6px 0 18px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.search-box:focus-within {
  border-color: var(--electric);
  box-shadow: 0 0 0 4px rgba(26, 123, 255, .15);
  background: var(--navy-light);
}

.search-box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--f-body);
  font-size: 14px;
  color: #fff;
  min-width: 0;
}

.search-box input::placeholder {
  color: var(--slate-light);
}

.search-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, .10);
  margin: 0 10px;
}

.search-cat {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-light);
  padding: 0 8px;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.search-cat svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.search-btn {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: var(--r6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}

.search-btn:hover {
  background: var(--orange-glow);
}

.search-btn svg {
  width: 17px;
  height: 17px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.hdr-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hdr-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 14px;
  border-radius: var(--r6);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--slate-light);
  cursor: pointer;
  transition: background .2s, color .2s;
  position: relative;
}

.hdr-btn:hover {
  background: var(--navy-mid);
  color: var(--white);
}

.hdr-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.hdr-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hdr-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, .08);
}

.hdr-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  background: #25D366;
  border-radius: var(--r6);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}

.hdr-wa:hover {
  background: #1DB954;
  transform: scale(1.02);
}

.hdr-wa svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}

.wa-header-btn {
  display: flex;
}

.nav-all {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  background: var(--orange);
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .07em;
  color: #fff;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}

.nav-all:hover {
  background: var(--orange-glow);
}

.nav-all svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.nav-links {
  display: flex;
  align-items: stretch;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .65);
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s, background .2s;
  border-bottom: 2.5px solid transparent;
  position: relative;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .05);
  border-bottom-color: var(--electric);
}

.nav-link.active {
  color: #fff;
  border-bottom-color: var(--orange);
}

.nav-link svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  flex-shrink: 0;
  opacity: .7;
}

.nav-link .nav-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  background: var(--orange);
  color: #fff;
  padding: 1px 6px;
  border-radius: var(--r2);
  margin-left: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-right a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .02em;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-right a:hover {
  color: #fff;
}

.nav-right a svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.mega-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(5, 14, 26, .45);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.mega-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy-panel);
  border-top: 2px solid var(--orange);
  box-shadow: 0 24px 80px rgba(5, 14, 26, .55);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .25s cubic-bezier(.22, 1, .36, 1), transform .25s cubic-bezier(.22, 1, .36, 1);
  max-height: calc(100vh - 130px);
  overflow-y: auto;
}

.mega-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mega-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 420px;
}

.mega-sidebar {
  border-right: 1px solid rgba(255, 255, 255, .06);
  background: rgba(8, 23, 43, .4);
}

.mega-sidebar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: background .18s, border-color .18s;
  position: relative;
}

.mega-sidebar-item:hover,
.mega-sidebar-item.active {
  background: rgba(232, 103, 14, .08);
  border-left-color: var(--orange);
}

.mega-sidebar-item.active .mega-sidebar-label {
  color: #fff;
}

.mega-sidebar-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r6);
  background: rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .18s;
}

.mega-sidebar-item:hover .mega-sidebar-icon,
.mega-sidebar-item.active .mega-sidebar-icon {
  background: var(--orange-pale);
  border: 1px solid rgba(232, 103, 14, .3);
}

.mega-sidebar-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--slate-light);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .18s;
}

.mega-sidebar-item:hover .mega-sidebar-icon svg,
.mega-sidebar-item.active .mega-sidebar-icon svg {
  stroke: var(--orange);
}

.mega-sidebar-info {
  flex: 1;
  min-width: 0;
}

.mega-sidebar-label {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  letter-spacing: .04em;
  transition: color .18s;
}

.mega-sidebar-count {
  font-size: 11px;
  color: var(--slate);
  margin-top: 1px;
}

.mega-sidebar-arrow {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, .25);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
  transition: stroke .18s;
}

.mega-sidebar-item:hover .mega-sidebar-arrow,
.mega-sidebar-item.active .mega-sidebar-arrow {
  stroke: var(--orange);
}

.mega-panel {
  display: none;
  padding: 28px 32px;
  flex-direction: column;
  gap: 24px;
}

.mega-panel.active {
  display: flex;
}

.mega-panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}

.mega-panel-title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .04em;
}

.mega-panel-desc {
  font-size: 13px;
  color: var(--slate-light);
}

.mega-subs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mega-sub-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--r8);
  cursor: pointer;
  transition: background .18s, border-color .18s;
}

.mega-sub-card:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(26, 123, 255, .3);
}

.mega-sub-card:hover .mega-sub-name {
  color: #fff;
}

.mega-sub-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--slate);
  flex-shrink: 0;
  transition: background .18s;
}

.mega-sub-card:hover .mega-sub-dot {
  background: var(--orange);
}

.mega-sub-name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
  transition: color .18s;
}

.mega-sub-count {
  font-size: 11px;
  color: var(--slate);
  margin-left: auto;
  flex-shrink: 0;
}

.mega-featured {
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(232, 103, 14, .12), rgba(26, 123, 255, .06));
  border: 1px solid rgba(232, 103, 14, .2);
  border-radius: var(--r8);
  display: flex;
  align-items: center;
  gap: 16px;
}

.mega-featured-label {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mega-featured-title {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.mega-featured-cta {
  margin-left: auto;
  flex-shrink: 0;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  height: 34px;
  padding: 0 14px;
  border-radius: var(--r4);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
}

.mega-featured-cta:hover {
  background: var(--orange-glow);
}

.mega-featured-cta svg {
  width: 13px;
  height: 13px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}

.site-header.scrolled {
  box-shadow: 0 6px 40px rgba(5, 14, 26, .6);
}

.site-header {
  background: var(--navy);
  border-bottom: 1.5px solid rgba(255, 255, 255, .07);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow .3s;
}

.mobile-header {
  display: none;
}

.header-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 74px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-wrap.has-custom-logo {
  display: block;
  max-width: 520px;
}

.site-nav {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255, 255, 255, .05);
  position: relative;
}

.nav-inner {
  display: flex;
  align-items: stretch;
  height: 50px;
  gap: 0;
}

.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 64px 0 0;
  color: #fff;
}

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

.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.footer-brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand.has-custom-logo .footer-brand-top {
  display: block;
  margin-bottom: 14px;
}

.footer-brand-image {
  display: block;
  width: auto;
  max-width: 260px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.footer-logo-name {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .05em;
  margin-bottom: 4px;
}

.footer-logo-name em {
  color: var(--orange);
  font-style: normal;
}

.footer-mono {
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--slate);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-about {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 320px;
}

.footer-contact-list {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .50);
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.footer-contact-link {
  text-decoration: none;
  color: rgba(255, 255, 255, .74);
  transition: color .2s ease, transform .2s ease;
}

.footer-contact-link:hover {
  color: #fff;
  transform: translateX(2px);
}

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

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: var(--r6);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}

.footer-social:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, .65);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: stroke .2s, fill .2s;
}

.footer-social svg polygon {
  fill: currentColor;
  stroke: none;
}

.footer-social:hover svg {
  stroke: #fff;
  fill: #fff;
  color: #fff;
}

.footer-col-title {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  flex-shrink: 0;
  transition: background .2s;
}

.footer-links a:hover::before {
  background: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, .25);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, .25);
  transition: color .2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, .6);
}

.footer-payment {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pay-badge {
  height: 26px;
  padding: 0 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .site-footer {
    padding-top: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
    margin-bottom: 26px;
  }

  .footer-menu-group {
    width: 100%;
    min-width: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-bottom: 12px;
  }

  .footer-info-group {
    padding: 0 0 12px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0;
    background: transparent;
  }

  .footer-info-group .footer-accordion {
    pointer-events: none;
  }

  .footer-info-group .footer-accordion svg {
    display: none;
  }

  .footer-info-group [data-footer-content] {
    display: flex !important;
  }

  .footer-info-group .footer-links {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
  }

  .footer-info-group .footer-links a {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, .45);
    line-height: 1.35;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

body.detail-embed .announce-bar,
body.detail-embed .site-header,
body.detail-embed .site-footer,
body.detail-embed .wa-float,
body.detail-embed .scroll-top,
body.detail-embed .fav-overlay,
body.detail-embed .toast,
body.detail-embed .breadcrumb-bar,
body.detail-embed .catalog-hero {
  display: none !important;
}

.mobile-nav-overlay,
.mobile-nav-drawer,
.mobile-section-cta,
.footer-accordion {
  display: none;
}

.footer-menu-group .footer-accordion {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  color: inherit;
}

.footer-menu-group .footer-accordion svg {
  display: none;
}

@media (max-width: 1023px) {
  .wa-header-btn {
    display: none !important;
  }
}

@media (max-width: 900px) {
  body {
    padding-top: 56px;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  .header-top {
    grid-template-columns: auto auto;
  }

  .search-wrap {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 26px;
  }

  .site-header {
    background: #08172b;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }

  .site-header > .container {
    padding: 0;
  }

  .mobile-header {
    display: block;
    height: 56px;
    padding: 0;
    background: #08172b;
  }

  .mobile-header-row {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
    padding: 0 16px;
  }

  .mobile-search-row {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 16px;
    background: #08172b;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height .28s ease, opacity .24s ease, padding-top .24s ease, padding-bottom .24s ease, transform .28s ease;
  }

  .mobile-search-row.is-open {
    padding-top: 10px;
    padding-bottom: 12px;
    max-height: 88px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-logo-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
  }

  .mobile-logo-full {
    display: block;
    height: 36px;
    width: auto;
    max-width: min(48vw, 180px);
    object-fit: contain;
  }

  .mobile-logo-name {
    font-family: var(--f-display);
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    letter-spacing: .02em;
    line-height: 1;
  }

  .mobile-logo-name em {
    color: var(--orange);
    font-style: normal;
  }

  .mobile-icon-btn {
    width: 24px;
    height: 56px;
    border-radius: 0;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex: 0 0 auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-icon-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
  }

  .mobile-search-toggle.is-active {
    background: transparent;
    border-color: transparent;
    color: var(--orange);
  }

  .mobile-search-box {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    height: 54px;
    padding: 0 8px 0 16px;
    background: var(--navy-mid);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-search-box:focus-within {
    background: #152c4a;
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
  }

  .mobile-search-box svg {
    width: 18px;
    height: 18px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 2.5;
  }

  .mobile-search-box input {
    min-width: 0;
    width: 100%;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    outline: none;
  }

  .mobile-search-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  .mobile-search-box button {
    height: 38px;
    padding: 0 16px;
    border-radius: 12px;
    background: var(--orange);
    color: #fff;
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    border: none;
  }

  .header-top,
  .site-nav > .container,
  .mega-overlay,
  .mega-menu,
  .site-nav {
    display: none;
  }

  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 14, 26, .55);
    backdrop-filter: blur(2px);
    z-index: 350;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
  }

  .mobile-nav-overlay.open {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(88vw, 360px);
    background: rgba(11, 26, 49, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    z-index: 360;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    box-shadow: 20px 0 80px rgba(0, 0, 0, 0.4);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-nav-drawer.open {
    display: block;
    transform: translateX(0);
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .mobile-nav-head strong {
    display: block;
    font-family: var(--f-display);
    font-size: 28px;
    line-height: .95;
    letter-spacing: .03em;
    text-transform: uppercase;
  }

  .mobile-nav-head span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    line-height: 1.5;
  }

  .mobile-nav-body {
    padding: 16px;
  }

  .mobile-nav-shortcuts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
  }

  .mobile-shortcut-card {
    min-width: 0;
    min-height: 54px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-weight: 700;
  }

  .mobile-shortcut-card--accent {
    background: var(--orange);
    border-color: var(--orange);
  }

  .mobile-nav-section-title {
    margin: 22px 0 10px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
  }

  .mobile-nav-accordions {
    display: grid;
    gap: 10px;
  }

  .mobile-nav-accordion {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    background: rgba(255, 255, 255, .04);
    overflow: hidden;
  }

  .mobile-nav-accordion summary {
    list-style: none;
    padding: 14px 16px;
    cursor: pointer;
    display: grid;
    gap: 4px;
  }

  .mobile-nav-accordion summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav-accordion summary span {
    font-family: var(--f-display);
    font-size: 22px;
    line-height: .95;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: #fff;
  }

  .mobile-nav-accordion summary small {
    color: rgba(255, 255, 255, .56);
    font-size: 12px;
  }

  .mobile-nav-sublist {
    display: grid;
    gap: 2px;
    padding: 0 10px 10px;
  }

  .mobile-nav-sublist a {
    min-height: 44px;
    padding: 0 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
  }

  .mobile-nav-sublist a:first-child {
    color: #fff;
    font-weight: 700;
    background: rgba(255, 255, 255, .06);
  }

  .mobile-nav-links {
    display: grid;
    gap: 8px;
  }

  .mobile-nav-links a {
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, .84);
    font-weight: 600;
  }

  .mobile-section-cta {
    display: flex;
    margin-top: 14px;
  }

  .site-footer {
    padding-top: 28px;
  }

  .footer-brand {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .footer-about {
    max-width: none;
    font-size: 14px;
  }

  .footer-menu-group {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-bottom: 12px;
  }

  .footer-accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .footer-accordion .footer-col-title {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 14px;
  }

  .footer-accordion svg {
    display: block;
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, .72);
    fill: none;
    stroke-width: 2.2;
    transition: transform .2s ease;
  }

  .footer-menu-group.is-open .footer-accordion svg {
    transform: rotate(180deg);
  }

  .footer-menu-group [data-footer-content] {
    display: none;
    padding-top: 12px;
  }

  .footer-menu-group.is-open [data-footer-content] {
    display: flex;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-info-group {
    padding: 0 0 12px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0;
    background: transparent;
  }

  .footer-info-group .footer-accordion {
    pointer-events: none;
  }

  .footer-info-group .footer-accordion svg {
    display: none;
  }

  .footer-info-group [data-footer-content] {
    display: flex !important;
  }

  .footer-info-group .footer-links {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
  }

  .footer-info-group .footer-links a {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, .45);
    line-height: 1.35;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-payment,
  .footer-legal {
    flex-wrap: wrap;
    gap: 10px;
  }
}

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

  .footer-brand-image {
    height: 46px;
    max-width: 220px;
  }

  .mobile-header-row {
    gap: 8px;
    height: 56px;
  }

  .mobile-header {
    height: 56px;
    background: #08172b;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .mobile-search-row {
    top: 56px;
    z-index: 1000;
  }
}

/* FIX: Estructura del Footer */
.site-footer {
  background: var(--navy-deep);
  color: #fff;
  padding: 64px 0 0;
}

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

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

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

/* Template sync: indelco-v2-premium.html */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 64px 0 0;
  color: #fff;
}

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

.footer-logo-name {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .05em;
  margin-bottom: 4px;
}

.footer-logo-name em {
  color: var(--orange);
  font-style: normal;
}

.footer-mono {
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--slate);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-about {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 320px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .50);
  margin-bottom: 8px;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

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

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: var(--r6);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}

.footer-social:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, .65);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: stroke .2s;
}

.footer-social:hover svg {
  stroke: #fff;
}

.footer-col-title {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  flex-shrink: 0;
  transition: background .2s;
}

.footer-links a:hover::before {
  background: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, .25);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, .25);
  transition: color .2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, .6);
}

.footer-payment {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pay-badge {
  height: 26px;
  padding: 0 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  display: flex;
  align-items: center;
}
