﻿/*
 * iNOVVA Shop â€” CSS Completo
 * Replica inovvashop.com.br
 */

/* ============================================================
   0. RESET + GLOBAL
   ============================================================ */
:root {
  --inovva-bg: #ffffff;
  --inovva-surface: #f7f7f7;
  --inovva-surface-2: #f3f3f3;
  --inovva-border: rgba(0,0,0,0.08);
  --inovva-text: #333333;
  --inovva-muted: rgba(51,51,51,0.65);
  --inovva-muted-2: rgba(51,51,51,0.5);
  --inovva-primary: #00a1e9;
  --inovva-cyan: #00a1e9;
  --inovva-whatsapp: #25d366;
  --inovva-wrap: 1280px;
}
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--inovva-bg);
  color: var(--inovva-text);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  overflow-x: hidden;
}
body.inovva-lightbox-open {
  overflow: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.inovva-skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
  padding: 10px 14px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--inovva-bg);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
}

/* ============================================================
   1. HEADER BLOCKSY - OCULTAR
   ============================================================ */
.ct-header { display: none !important; }

/* ============================================================
   2. INOVVA HEADER
   ============================================================ */
#inovva-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  background: rgba(17,34,88,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  transition: transform .3s ease;
}
#inovva-header.is-hidden {
  transform: translateY(-100%);
}
.ih-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--inovva-wrap);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  gap: 32px;
}
.ih-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.ih-nav { flex: 1; display: flex; justify-content: center; }
.ih-menu { display: flex; align-items: center; gap: 36px; list-style: none; margin: 0; padding: 0; }
.ih-menu > li { position: relative; }
.ih-menu > li > a {
  display: inline-block; padding: 4px 2px;
  color: rgba(255,255,255,0.85) !important; font-size: .95rem !important; font-weight: 600 !important;
  letter-spacing: .01em; border-radius: 7px;
  transition: color .18s, background .18s;
  text-decoration: none !important; white-space: nowrap;
}
.ih-menu > li > a:hover,
.ih-menu > li.current-menu-item > a,
.ih-menu > li.current_page_item > a {
  color: #fff !important; background: transparent;
}

/* Mega menu (mini-cards ao passar o mouse) */
.ih-mega-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 480px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.18);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 100;
}
.ih-has-mega:hover .ih-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.ih-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.ih-mega-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 8px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: background .15s ease;
}
.ih-mega-card:hover {
  background: #f7f9fa;
}
.ih-mega-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.ih-mega-card span {
  font-size: .78rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
  line-height: 1.3;
}
.ih-menu > li.current-menu-item > a::after,
.ih-menu > li.current_page_item > a::after {
  display: none;
}
.ih-menu .sub-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 180px;
  background: var(--inovva-surface); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 6px;
  list-style: none; margin: 0; opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  box-shadow: 0 16px 40px rgba(0,0,0,.6); z-index: 100;
}
.ih-menu li { position: relative; }
.ih-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.ih-menu .sub-menu li a {
  display: block; padding: 9px 14px;
  color: #666666 !important; font-size: .8rem !important;
  border-radius: 7px; transition: color .15s, background .15s;
  text-decoration: none !important;
}
.ih-menu .sub-menu li a:hover { color: #fff !important; background: rgba(0,0,0,0.05); }
.ih-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.ih-cart {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 999px; color: rgba(255,255,255,0.68) !important;
  background: transparent; border: 1px solid transparent;
  transition: color .18s, background .18s, border-color .18s; text-decoration: none !important;
}
.ih-cart:hover { color: #fff !important; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.ih-cart-count {
  position: absolute; top: 4px; right: 4px; width: 16px; height: 16px;
  background: var(--inovva-primary); color: #ffffff; font-size: .58rem; font-weight: 800;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; line-height: 1;
}
.ih-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--inovva-primary); color: #ffffff !important;
  border: 0;
  font-size: .8125rem !important; font-weight: 500 !important;
  padding: 10px 22px; border-radius: 999px; text-decoration: none !important;
  transition: opacity .18s ease, transform .15s; white-space: nowrap;
}
.ih-cta:hover { opacity: .9; transform: translateY(-1px); }
.ih-burger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px; padding: 9px 10px; cursor: pointer;
  transition: border-color .18s, background .18s;
}
.ih-burger span {
  display: block; width: 20px; height: 2px; background: rgba(255,255,255,0.72);
  border-radius: 2px; transition: transform .25s, opacity .25s, background .18s;
  transform-origin: center;
}
.ih-burger:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.ih-burger:hover span { background: #cfd8dc; }
.ih-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ih-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ih-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.ih-mobile {
  background: rgba(17,34,88,0.98); border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden; max-height: 0;
  transition: max-height .32s cubic-bezier(0.4,0,0.2,1);
}
.ih-mobile.is-open { max-height: 600px; }
.ih-mobile-list { list-style: none; margin: 0; padding: 12px 20px; }
.ih-mobile-list li a {
  display: block; padding: 13px 0;
  color: rgba(255,255,255,0.72) !important; font-size: .9rem !important; font-weight: 500 !important;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-decoration: none !important; transition: color .18s, padding-left .18s;
}
.ih-mobile-list li a:hover { color: #fff !important; padding-left: 6px; }
.ih-mobile-list li.current-menu-item > a,
.ih-mobile-list li.current_page_item > a { color: #ffffff !important; }
.ih-mobile-footer { padding: 16px 20px 24px; border-top: 1px solid rgba(255,255,255,0.04); }
.ih-mobile-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--inovva-primary); border: 0;
  color: #ffffff !important; font-size: .85rem !important; font-weight: 500 !important;
  padding: 12px 20px; border-radius: 999px; text-decoration: none !important;
  width: 100%; justify-content: center; transition: background .18s;
}
.ih-mobile-cta:hover { opacity: .9; }
@media (max-width: 900px) {
  .ih-nav, .ih-cta { display: none; }
  .ih-burger { display: flex; }
  .ih-inner { padding: 0 20px; height: 62px; }
}
@media (max-width: 480px) {
  .ih-inner { padding: 0 16px; height: 58px; }
  
}

/* ============================================================
   3. HOME WRAPPER - REMOVER BLOCKSY
   ============================================================ */
body.home {
  background: #ffffff !important;
}
body.home .ct-container,
body.home .ct-container-xl,
body.home .entry-content,
body.home .ct-page-content,
body.home .ct-content-area article {
  padding: 0 !important; margin: 0 !important;
  max-width: 100% !important; width: 100% !important;
  background: transparent !important;
}
body.home .ct-sidebar,
body.home aside,
body.home .entry-title,
body.home .page-title,
body.home .ct-page-header { display: none !important; }
body.home .ct-main,
body.home main,
body.home #main,
body.home #content,
body.home .ct-content-area { background: #ffffff !important; padding: 0 !important; }

/* ============================================================
   4. HERO
   ============================================================ */
#inovva-home { background: #ffffff; width: 100%; overflow-x: hidden; }
.inovva-hero {
  background: #ffffff; min-height: 82vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 100px 24px 80px;
  position: relative; overflow: hidden;
}
.inovva-hero::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(0,161,233,.12) 0%, transparent 70%);
  pointer-events: none;
}
.inovva-hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.inovva-hero-eyebrow {
  display: inline-block; color: #00a1e9;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  background: rgba(0,161,233,.08); border: 1px solid rgba(0,161,233,.2);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 28px;
}
.inovva-hero h1 {
  font-size: clamp(2.4rem,5.5vw,3.6rem); font-weight: 900;
  line-height: 1.1; letter-spacing: -.03em; color: #333333; margin: 0 0 20px;
}
.inovva-hero h1 span { color: #00a1e9; }
.inovva-hero p { font-size: 1.05rem; color: #666666; max-width: 480px; margin: 0 auto 40px; line-height: 1.65; }
.inovva-hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.inovva-shipping-bar {
  background: var(--inovva-primary, #1b2ae8);
  color: #ffffff;
  text-align: center;
  padding: 9px 16px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: normal;
}
.inovva-hero-carousel {
  position: relative;
  min-height: 62vh;
  max-height: 720px;
  overflow: hidden;
  background: var(--inovva-surface);
}
.inovva-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
  background-color: var(--inovva-surface);
  background-size: cover;
  background-position: center;
}
.inovva-hero-slide-poster {
  display: block;
}
.inovva-hero-poster-link {
  display: block;
  width: 100%;
  height: 100%;
}
.inovva-hero-slide-poster picture,
.inovva-hero-slide-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.inovva-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.inovva-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,22,40,.78) 0%, rgba(10,22,40,.42) 45%, rgba(10,22,40,.12) 72%);
}
.inovva-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 112px 24px 56px;
}
.inovva-hero-copy {
  max-width: 640px;
}
.inovva-hero-carousel .inovva-hero-eyebrow {
  color: var(--inovva-cyan);
  margin-bottom: 20px;
}
.inovva-hero-slide h1 {
  font-size: clamp(2.4rem,5.5vw,4.5rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.03em;
  color: #ffffff;
  margin: 0 0 22px;
}
.inovva-hero-slide p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 0 0 40px;
  line-height: 1.65;
}
.inovva-hero-copy .inovva-hero-ctas {
  justify-content: flex-start;
}
.inovva-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.inovva-hero-badges span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 6px;
  background: rgba(0,195,255,.12);
  border: 1px solid rgba(0,195,255,.28);
  color: var(--inovva-cyan);
  font-size: .74rem;
  font-weight: 600;
}
.inovva-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}
.inovva-hero-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.3);
  transition: width .18s ease, background .18s ease;
  cursor: pointer;
}
.inovva-hero-dots button.is-active {
  width: 32px;
  background: #ffffff;
}

/* ============================================================
   5. BOTOES
   ============================================================ */
.btn-verde {
  display: inline-flex; align-items: center; gap: 6px;
  background: #00a1e9; color: #0a1628 !important;
  font-weight: 700; font-size: .9rem; padding: 13px 28px;
  border-radius: 8px; border: none; cursor: pointer;
  transition: background .2s, transform .15s; white-space: nowrap;
}
.btn-verde:hover { background: #33b5f0; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #666666 !important;
  font-weight: 600; font-size: .9rem; padding: 13px 24px;
  border-radius: 8px; border: 1px solid #e5e5e5; cursor: pointer;
  transition: border-color .2s, color .2s, transform .15s; white-space: nowrap;
}
.btn-ghost:hover { border-color: #666666; color: #333333 !important; transform: translateY(-1px); }
.btn-lg { padding: 16px 36px; font-size: .95rem; }
.btn-cta-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--inovva-primary) !important;
  font-size: .95rem;
  font-weight: 700;
  transition: opacity .18s ease, transform .15s ease;
  text-decoration: none !important;
}
.btn-cta-home:hover { opacity: .92; transform: translateY(-1px); }

/* ============================================================
   6. SECOES
   ============================================================ */
.inovva-sec { padding: 80px 24px; }
.inovva-wrap { max-width: 1180px; margin: 0 auto; }
.sec-label {
  display: inline-block; color: #00a1e9;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  background: rgba(0,161,233,.08); border: 1px solid rgba(0,161,233,.2);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 18px;
}
.sec-title {
  font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; color: #333333;
  letter-spacing: -.02em; line-height: 1.2; margin: 0 0 10px;
}
.sec-sub { font-size: .9rem; color: #666666; margin: 0 0 40px; }
.inovva-sec-cats    { background: #ffffff; border-top: 1px solid #e5e5e5; }
.inovva-sec-produtos{ background: #f3f3f3; border-top: 1px solid #e5e5e5; }
.inovva-sec-dif     { background: #ffffff; border-top: 1px solid #e5e5e5; }
.inovva-sec-depos   { background: #f3f3f3; border-top: 1px solid #e5e5e5; }
.inovva-sec-cta     { background: #f3f3f3; border-top: 1px solid #e5e5e5; }

/* ============================================================
   7. CATEGORIAS
   ============================================================ */
.cats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card {
  display: flex; flex-direction: column;
  background: #ffffff; border: 1px solid #e5e5e5; border-radius: 16px;
  overflow: hidden; transition: border-color .25s, transform .25s, box-shadow .25s; cursor: pointer;
}
.cat-card:hover { border-color: rgba(0,161,233,.35); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.5); }
.cat-card-img {
  width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #ffffff;
  display: flex; align-items: center; justify-content: center;
}
.cat-card-img img, .cat-img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .75; transition: opacity .3s, transform .4s;
}
.cat-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7f7f7, #eeeeee);
  color: var(--inovva-muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cat-card:hover .cat-img { opacity: .9; transform: scale(1.03); }
.cat-card-body { padding: 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.cat-badge {
  display: inline-block; background: rgba(0,161,233,.1); color: #00a1e9;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; border: 1px solid rgba(0,161,233,.2); width: fit-content;
}
.cat-card h3 { font-size: 1.2rem; font-weight: 800; color: #333333; margin: 0; }
.cat-card p { font-size: .85rem; color: #666666; margin: 0; line-height: 1.5; }
.cat-link {
  font-size: .85rem; font-weight: 600; color: #00a1e9; margin-top: 6px;
  display: flex; align-items: center; gap: 4px; transition: gap .2s;
}
.cat-card:hover .cat-link { gap: 8px; }

.cats-grid-lite { gap: 24px; }
.cat-card-lite {
  display: block;
  padding: 40px;
  border-radius: 12px;
  background: var(--inovva-surface);
  border-top: 2px solid var(--inovva-primary);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cat-card-lite:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
}
.cat-card-lite-icon {
  color: var(--inovva-cyan);
  margin-bottom: 24px;
}
.cat-card-lite h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #333333;
  margin: 0 0 12px;
}
.cat-card-lite p {
  font-size: .98rem;
  line-height: 1.7;
  color: #666666;
  max-width: 460px;
  margin: 0 0 30px;
}

/* ============================================================
   8. GRID DE PRODUTOS
   ============================================================ */
.prods-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.inovva-empty-home {
  grid-column: 1 / -1;
  border: 1px solid var(--inovva-border);
  border-radius: 10px;
  padding: 24px;
  color: var(--inovva-muted);
  background: rgba(255,255,255,0.02);
  text-align: center;
}
.prod-card {
  display: flex; flex-direction: column;
  background: #ffffff; border: 1px solid #e5e5e5; border-radius: 14px;
  overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; cursor: pointer;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.5); border-color: rgba(0,161,233,.3); }
.prod-img-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #ffffff; }
.prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.prod-card:hover .prod-img-wrap img { transform: scale(1.05); }
.prod-img-ph { width: 100%; height: 100%; background: linear-gradient(135deg, #f7f7f7, #eeeeee); }
.prod-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,161,233,.12); color: #00a1e9;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px; border: 1px solid rgba(0,161,233,.3);
  backdrop-filter: blur(6px);
}
.prod-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.prod-body h3 { font-size: .92rem; font-weight: 700; color: #333333; margin: 0; line-height: 1.3; }
.prod-stars { display: flex; align-items: center; gap: 5px; }
.stars-icons { display: flex; gap: 1px; }
.stars-num { font-size: .78rem; font-weight: 700; color: #facc15; }
.stars-count { font-size: .75rem; color: #666666; }
.prod-price { font-size: 1.25rem; font-weight: 800; color: #333333; letter-spacing: -.02em; margin-top: 4px; display: flex; flex-direction: column; gap: 2px; }
.prod-price .inovva-avista { display: block; font-size: 1.25rem; font-weight: 800; color: #333333; letter-spacing: -.02em; }
.prod-price .inovva-parc { display: block; font-size: .82rem; font-weight: 700; color: #00a1e9; letter-spacing: -.01em; margin-top: 2px; }
.prod-parc { font-size: .78rem; color: #00a1e9; font-weight: 500; }
.prod-btn {
  display: inline-block; margin-top: 12px;
  background: #25d366; border: 1px solid #25d366; color: #ffffff;
  font-size: 1.05rem; font-weight: 800; padding: 14px 18px;
  border-radius: 8px; text-align: center;
  text-transform: uppercase; letter-spacing: .02em;
  transition: background .2s, border-color .2s, color .2s; width: 100%;
}
.prod-card:hover .prod-btn { background: #1ec25c; border-color: #1ec25c; color: #ffffff; }
.inovva-produtos-lite .prod-card-moto .prod-img-wrap img,
.inovva-produtos-lite .prod-card-moto .prod-img-wrap .cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   9. DIFERENCIAIS
   ============================================================ */
.dif-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 10px; }
.dif-item {
  background: #ffffff; border: 1px solid #e5e5e5; border-radius: 14px;
  padding: 28px 24px; transition: border-color .25s;
}
.dif-item:hover { border-color: rgba(0,161,233,.3); }
.dif-num { font-size: .75rem; font-weight: 800; color: #00a1e9; letter-spacing: .08em; margin-bottom: 14px; font-family: monospace; }
.dif-item h3 { font-size: .95rem; font-weight: 700; color: #333333; margin: 0 0 8px; }
.dif-item p { font-size: .82rem; color: #666666; margin: 0; line-height: 1.5; }
.dif-grid-lite { gap: 40px 28px; }
.dif-item-lite {
  padding: 0;
  background: transparent;
  border: 0;
}
.dif-num-lite {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(27,42,232,.4);
  margin-bottom: 18px;
}
.dif-item-lite h3 {
  margin: 0 0 8px;
  color: #333333;
  font-size: 1rem;
  font-weight: 600;
}
.dif-item-lite p {
  margin: 0;
  color: #666666;
  line-height: 1.6;
  font-size: .84rem;
}

/* ============================================================
   10. DEPOIMENTOS
   ============================================================ */
.testes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 10px; }
.teste-card {
  background: #ffffff; border: 1px solid #e5e5e5; border-radius: 14px;
  padding: 18px; display: flex; flex-direction: column; gap: 12px; transition: border-color .25s;
}
.teste-card:hover { border-color: #25d366; }
.teste-video-slot {
  position: relative; width: 100%; aspect-ratio: 9 / 16; max-height: 420px;
  border-radius: 10px; overflow: hidden; background: #0a1628;
}
.teste-video-slot video,
.teste-video-slot iframe { display: block; width: 100%; height: 100%; object-fit: cover; border: 0; }
.teste-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(160deg,#0a1628,#112540);
}
.teste-play-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(37,211,102,.15); border: 1px solid rgba(37,211,102,.4);
  color: #25d366; font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
}
.teste-placeholder-label { color: rgba(255,255,255,.55); font-size: .75rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.teste-card h3 { font-size: 1rem; font-weight: 800; color: #333333; margin: 0; }
.teste-card p { font-size: .85rem; color: #666666; margin: 0; line-height: 1.5; }
.depos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 10px; }
.depo-card {
  background: #ffffff; border: 1px solid #e5e5e5; border-radius: 14px;
  padding: 26px; display: flex; flex-direction: column; gap: 14px; transition: border-color .25s;
}
.depo-card:hover { border-color: #e5e5e5; }
.depo-head { display: flex; align-items: center; gap: 12px; }
.depo-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,161,233,.12); border: 1px solid rgba(0,161,233,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; color: #00a1e9; flex-shrink: 0; letter-spacing: .04em;
}
.depo-nome { font-size: .85rem; font-weight: 700; color: #333333; }
.depo-prod { font-size: .75rem; color: #666666; margin-top: 2px; }
.depo-txt { font-size: .85rem; color: #666666; line-height: 1.6; margin: 0; font-style: italic; }
.depo-stars { display: flex; gap: 2px; margin-top: auto; }

/* ============================================================
   11. CTA WHATSAPP
   ============================================================ */
.cta-box {
  background: #ffffff; border: 1px solid #e5e5e5; border-radius: 18px;
  padding: 56px 48px; text-align: center;
}
.cta-box h2 {
  font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 800; color: #333333;
  margin: 0 0 12px; letter-spacing: -.02em;
}
.cta-box p { font-size: .9rem; color: #666666; margin: 0 0 28px; }
.cta-box-lite {
  background: var(--inovva-primary);
  border: 0;
  border-radius: 0;
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}
.cta-box-lite h2 {
  max-width: 580px;
  color: #ffffff !important;
  font-size: clamp(1.8rem, 3vw, 2.3rem) !important;
  font-weight: 600 !important;
  letter-spacing: -.02em;
  margin: 0 0 12px !important;
}
.cta-box-lite p {
  color: rgba(255,255,255,.8) !important;
  margin: 0 !important;
  font-size: 1rem;
}

/* ============================================================
   12. WHATSAPP FLUTUANTE
   ============================================================ */
.inovva-whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.inovva-whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,.6); }

/* ============================================================
   13. LOJA DARK
   ============================================================ */
body.woocommerce.archive, body.woocommerce-page { background: #ffffff !important; color: #333333 !important; }
body.woocommerce.archive .ct-main, body.woocommerce-page .ct-main { background: #ffffff !important; }
body.woocommerce ul.products li.product {
  background: #ffffff !important; border: 1px solid #e5e5e5 !important;
  border-radius: 14px !important; overflow: hidden !important;
  padding: 0 0 20px !important; transition: transform .25s, border-color .25s !important;
}
body.woocommerce ul.products li.product:hover { transform: translateY(-4px) !important; border-color: rgba(0,161,233,.3) !important; }
body.woocommerce ul.products li.product .woocommerce-loop-product__title,
body.woocommerce ul.products li.product h2 { color: #333333 !important; font-size: .9rem !important; font-weight: 700 !important; padding: 14px 18px 0 !important; }
body.woocommerce ul.products li.product .price { color: #333333 !important; font-weight: 800 !important; padding: 0 18px !important; }
body.woocommerce ul.products li.product .button {
  margin: 12px 18px 0 !important; width: calc(100% - 36px) !important;
  border-radius: 7px !important; background: transparent !important;
  border: 1px solid #e5e5e5 !important; color: #666666 !important;
  font-size: .8rem !important; font-weight: 600 !important; padding: 9px 0 !important;
  transition: background .2s, color .2s, border-color .2s !important;
}
body.woocommerce ul.products li.product .button:hover { background: #00a1e9 !important; border-color: #00a1e9 !important; color: #0a1628 !important; }

/* ============================================================
   14. PDP DARK
   ============================================================ */
body.single-product { background: #ffffff !important; color: #333333 !important; }
body.single-product .ct-main, body.single-product main, body.single-product #main { background: #ffffff !important; }
body.single-product .ct-sidebar { display: none !important; }
body.single-product .product-entry-wrapper {
  max-width: var(--inovva-wrap) !important;
  margin: 0 auto !important;
  padding: 48px 32px 28px !important;
}
body.single-product .entry-summary {
  background: rgba(13,31,60,.78) !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 14px !important;
  padding: 26px !important;
}
.woocommerce div.product .woocommerce-product-gallery {
  background: #ffffff !important; border: 1px solid #e5e5e5 !important;
  border-radius: 14px !important; overflow: hidden !important;
}
.flex-control-nav li img { border-color: #e5e5e5 !important; }
.flex-control-nav li.flex-active img { border-color: #00a1e9 !important; }
.woocommerce div.product .product_title {
  color: #333333 !important; font-size: clamp(1.4rem,2.5vw,1.9rem) !important;
  font-weight: 900 !important; letter-spacing: -.02em !important; margin-bottom: 12px !important;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
  color: #333333 !important; font-size: 1.8rem !important; font-weight: 800 !important; letter-spacing: -.03em !important;
}
.woocommerce div.product .woocommerce-product-details__short-description { color: #666666 !important; font-size: .88rem !important; line-height: 1.65 !important; }
.inovva-pdp-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}
.inovva-pdp-meta-item {
  background: rgba(255,255,255,.025);
  border: 1px solid #e5e5e5;
  border-radius: 9px;
  padding: 11px 12px;
}
.inovva-pdp-meta-item span {
  display: block;
  color: #666666;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.inovva-pdp-meta-item strong {
  display: block;
  color: #333333;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.25;
}
.inovva-parcelamento {
  background: rgba(0,161,233,.08); border: 1px solid rgba(0,161,233,.18);
  border-radius: 8px; padding: 10px 16px; font-size: .82rem; color: #00a1e9;
  margin: 10px 0; display: inline-flex; align-items: center; gap: 8px;
}
.woocommerce div.product .stock {
  color: #16a34a !important;
  font-size: .82rem !important;
  font-weight: 800 !important;
  margin: 10px 0 0 !important;
}
.woocommerce div.product form.cart {
  display: flex !important;
  align-items: stretch !important;
  gap: 10px !important;
  margin-top: 18px !important;
  flex-wrap: wrap !important;
}
.woocommerce div.product form.cart .quantity {
  margin: 0 !important;
}
.woocommerce div.product form.cart .quantity .qty {
  min-height: 48px !important;
  width: 82px !important;
  background: #ffffff !important;
  border: 1px solid #e5e5e5 !important;
  color: #333333 !important;
  border-radius: 8px !important;
  font-weight: 800 !important;
}
.woocommerce div.product form.cart table.variations {
  width: 100% !important;
  margin: 0 0 12px !important;
}
.woocommerce div.product form.cart table.variations th,
.woocommerce div.product form.cart table.variations td {
  display: block !important;
  padding: 0 0 8px !important;
  background: transparent !important;
}
.woocommerce div.product form.cart table.variations label {
  color: #666666 !important;
  font-size: .78rem !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}
.woocommerce div.product form.cart table.variations select {
  width: 100% !important;
  background: #ffffff !important;
  border: 1px solid #e5e5e5 !important;
  color: #333333 !important;
  border-radius: 8px !important;
  min-height: 46px !important;
  padding: 0 12px !important;
}
.woocommerce div.product form.cart .reset_variations {
  color: var(--inovva-cyan) !important;
  font-size: .78rem !important;
}
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button {
  background: #00a1e9 !important; color: #0a1628 !important; font-weight: 700 !important;
  font-size: .9rem !important; border-radius: 8px !important; padding: 14px 28px !important;
  border: none !important; transition: background .2s, transform .15s !important;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
  flex: 1 1 220px !important;
  min-height: 48px !important;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover,
.woocommerce a.button:hover, .woocommerce button.button:hover { background: #33b5f0 !important; transform: translateY(-1px) !important; }
.inovva-whatsapp-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; background: transparent; border: 1px solid #25d366; color: #25d366 !important;
  font-weight: 700; font-size: .88rem; padding: 13px 24px; border-radius: 8px; margin-top: 10px;
  transition: background .2s, color .2s;
}
.inovva-whatsapp-btn:hover { background: #25d366; color: #fff !important; }
.inovva-trust-bar {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px;
  margin: 20px 0; padding: 18px 0;
  border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5;
}
.inovva-trust-item { display: flex; align-items: center; gap: 10px; }
.ti-icon { font-size: 1.3rem; flex-shrink: 0; }
.inovva-trust-item strong { display: block; font-size: .78rem; font-weight: 700; color: #333333; }
.inovva-trust-item div { font-size: .72rem; color: #666666; line-height: 1.4; }
.inovva-specs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 16px 0; }
.inovva-spec-item { background: #ffffff; border: 1px solid #e5e5e5; border-radius: 8px; padding: 12px 14px; text-align: center; }
.inovva-spec-value { font-size: .92rem; font-weight: 800; color: #333333; }
.inovva-spec-label { font-size: .7rem; color: #666666; margin-top: 2px; }
.woocommerce div.product .woocommerce-tabs ul.tabs {
  background: transparent !important; padding: 0 !important;
  border-bottom: 1px solid #e5e5e5 !important; margin: 40px 0 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important; border: none !important;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: #666666 !important; font-size: .83rem !important; font-weight: 600 !important; padding: 10px 18px !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { border-bottom-color: #00a1e9 !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: #333333 !important; }
.woocommerce div.product .woocommerce-tabs .panel {
  background: #ffffff !important; border: 1px solid #e5e5e5 !important;
  border-radius: 10px !important; padding: 28px !important;
  color: #666666 !important; font-size: .87rem !important; line-height: 1.65 !important; margin-top: 16px !important;
}
.woocommerce .related h2, .woocommerce .up-sells h2 { color: #333333 !important; font-size: 1.1rem !important; font-weight: 800 !important; }

/* ============================================================
   15. CART & CHECKOUT DARK
   ============================================================ */
body.woocommerce-cart, body.woocommerce-checkout { background: #ffffff !important; color: #333333 !important; }
body.woocommerce-cart .ct-main, body.woocommerce-checkout .ct-main { background: #ffffff !important; }
body.woocommerce-cart .woocommerce {
  max-width: var(--inovva-wrap);
  margin: 0 auto;
  padding: 0 32px 56px;
}
.inovva-cart-hero {
  max-width: var(--inovva-wrap);
  margin: 0 auto;
  padding: 58px 32px 26px;
}
.inovva-cart-label {
  display: inline-block;
  color: var(--inovva-cyan);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.inovva-cart-hero h1 {
  color: #333333;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.03em;
  margin: 0;
}
.inovva-cart-hero p {
  color: #666666;
  max-width: 620px;
  margin: 16px 0 0;
  line-height: 1.7;
}
.inovva-cart-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
}
.inovva-cart-trust div {
  background: rgba(13,31,60,.78);
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 15px 16px;
}
.inovva-cart-trust strong {
  display: block;
  color: #333333;
  font-size: .82rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.inovva-cart-trust span {
  display: block;
  color: #666666;
  font-size: .76rem;
  line-height: 1.45;
}
.woocommerce-cart-form,
.woocommerce .cart-collaterals .cart_totals {
  background: rgba(13,31,60,.78) !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 14px !important;
}
.woocommerce-cart-form {
  padding: 0 !important;
  overflow: hidden;
}
.woocommerce table.shop_table { border: 1px solid #e5e5e5 !important; border-radius: 12px !important; overflow: hidden !important; }
.woocommerce table.shop_table thead th {
  background: #ffffff !important; color: #666666 !important; font-size: .72rem !important;
  font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: .1em !important;
  border: none !important; padding: 14px 18px !important;
}
.woocommerce table.shop_table td { background: #ffffff !important; border-color: #e5e5e5 !important; color: #666666 !important; padding: 16px 18px !important; }
.woocommerce table.shop_table .product-name a { color: #333333 !important; font-weight: 600; }
.woocommerce-cart-form table.shop_table {
  border: 0 !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
.woocommerce-cart-form table.shop_table .product-thumbnail img {
  width: 72px !important;
  height: 72px !important;
  object-fit: contain !important;
  background: #ffffff !important;
  border-radius: 8px !important;
  padding: 6px !important;
}
.woocommerce-cart-form table.shop_table .product-remove a {
  color: #666666 !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 999px !important;
  width: 26px !important;
  height: 26px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}
.woocommerce-cart-form table.shop_table .product-remove a:hover {
  color: #333333 !important;
  background: rgba(248,113,113,.2) !important;
  border-color: rgba(248,113,113,.45) !important;
}
.woocommerce-cart-form .quantity .qty {
  background: #ffffff !important;
  border: 1px solid #e5e5e5 !important;
  color: #333333 !important;
  border-radius: 8px !important;
  min-height: 42px !important;
  font-weight: 800 !important;
}
.woocommerce-cart-form .coupon {
  display: flex !important;
  gap: 8px !important;
  align-items: stretch !important;
}
.woocommerce-cart-form .coupon .input-text {
  min-width: 220px !important;
}
.woocommerce-cart-form button[name="update_cart"],
.woocommerce-cart-form .coupon .button {
  min-height: 44px !important;
  border-radius: 8px !important;
}
.woocommerce .cart_totals { background: #ffffff !important; border: 1px solid #e5e5e5 !important; border-radius: 12px !important; padding: 24px !important; }
.woocommerce .cart_totals h2 { color: #333333 !important; font-size: .95rem !important; font-weight: 800 !important; margin-bottom: 16px !important; }
.woocommerce .cart_totals table td, .woocommerce .cart_totals table th { color: #666666 !important; border-color: #e5e5e5 !important; }
.woocommerce .cart_totals .order-total td, .woocommerce .cart_totals .order-total th { color: #333333 !important; font-size: 1.1rem !important; font-weight: 900 !important; }
.woocommerce .wc-proceed-to-checkout .checkout-button {
  width: 100% !important;
  border-radius: 10px !important;
  min-height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: .92rem !important;
  font-weight: 900 !important;
}
.wc-empty-cart-message,
.woocommerce-cart .cart-empty,
.woocommerce-cart .return-to-shop {
  max-width: var(--inovva-wrap);
  margin-left: auto !important;
  margin-right: auto !important;
}
.wc-empty-cart-message {
  background: rgba(13,31,60,.78) !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 14px !important;
  padding: 22px !important;
}
.inovva-empty-cart-actions {
  max-width: var(--inovva-wrap);
  margin: 0 auto 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.inovva-empty-cart-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(56,189,248,.22);
  background: rgba(56,189,248,.07);
  color: var(--inovva-cyan) !important;
  border-radius: 999px;
  padding: 10px 15px;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none !important;
}
.inovva-empty-cart-actions a:hover {
  background: var(--inovva-primary);
  border-color: var(--inovva-primary);
  color: #ffffff !important;
}

body.woocommerce-checkout .woocommerce {
  max-width: var(--inovva-wrap);
  margin: 0 auto;
  padding: 0 32px 60px;
}
.inovva-checkout-hero {
  max-width: var(--inovva-wrap);
  margin: 0 auto;
  padding: 58px 32px 26px;
}
.inovva-checkout-label {
  display: inline-block;
  color: var(--inovva-cyan);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.inovva-checkout-hero h1 {
  color: #333333;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.03em;
  margin: 0;
}
.inovva-checkout-hero p {
  color: #666666;
  max-width: 620px;
  margin: 16px 0 0;
  line-height: 1.7;
}
.inovva-checkout-steps,
.inovva-checkout-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
}
.inovva-checkout-steps {
  grid-column: 1 / -1;
}
.inovva-checkout-steps div,
.inovva-checkout-trust div {
  background: rgba(13,31,60,.78);
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 15px 16px;
}
.inovva-checkout-steps div {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 12px;
  align-items: center;
}
.inovva-checkout-steps span {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(56,189,248,.1);
  border: 1px solid rgba(56,189,248,.26);
  color: var(--inovva-cyan);
  font-weight: 900;
  font-size: .8rem;
}
.inovva-checkout-steps strong,
.inovva-checkout-trust strong {
  display: block;
  color: #333333;
  font-size: .82rem;
  font-weight: 800;
}
.inovva-checkout-steps small,
.inovva-checkout-trust span {
  display: block;
  color: #666666;
  font-size: .76rem;
  line-height: 1.45;
  margin-top: 3px;
}
body.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 24px;
  align-items: start;
}
body.woocommerce-checkout form.checkout .ct-customer-details,
body.woocommerce-checkout form.checkout .ct-order-review {
  min-width: 0;
}
body.woocommerce-checkout form.checkout .ct-order-review {
  position: sticky;
  top: 92px;
}
body.woocommerce-checkout #customer_details,
body.woocommerce-checkout #order_review,
body.woocommerce-checkout #payment,
body.woocommerce-checkout .woocommerce-additional-fields {
  background: rgba(13,31,60,.78) !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 14px !important;
}
body.woocommerce-checkout #customer_details {
  padding: 22px !important;
}
body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2 {
  float: none !important;
  width: 100% !important;
}
body.woocommerce-checkout #customer_details .col-2 {
  margin-top: 20px;
}
body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-shipping-fields h3,
body.woocommerce-checkout .woocommerce-additional-fields h3,
body.woocommerce-checkout #order_review_heading {
  color: #333333 !important;
  font-size: .98rem !important;
  font-weight: 900 !important;
  letter-spacing: -.01em;
  margin: 0 0 16px !important;
}
body.woocommerce-checkout #order_review_heading,
body.woocommerce-checkout #order_review,
body.woocommerce-checkout .inovva-checkout-trust {
  grid-column: 2;
}
body.woocommerce-checkout #order_review_heading {
  align-self: end;
}
body.woocommerce-checkout #order_review {
  overflow: hidden;
}
body.woocommerce-checkout #order_review table.shop_table {
  border: 0 !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
body.woocommerce-checkout #payment {
  background: #ffffff !important;
  border-width: 1px 0 0 !important;
  border-radius: 0 0 14px 14px !important;
  color: #666666 !important;
}
body.woocommerce-checkout #payment ul.payment_methods {
  border-bottom-color: #e5e5e5 !important;
}
body.woocommerce-checkout #payment div.payment_box {
  background: #ffffff !important;
  color: #666666 !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 10px !important;
}
body.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #e5e5e5 !important;
}
body.woocommerce-checkout #payment #place_order,
body.woocommerce-checkout button[type="submit"] {
  width: 100% !important;
  min-height: 52px !important;
  border-radius: 10px !important;
  font-size: .92rem !important;
  font-weight: 900 !important;
}
body.woocommerce-account .ct-main,
body.woocommerce-order-received .ct-main {
  background: #ffffff !important;
}
body.woocommerce-account .entry-content,
body.woocommerce-order-received .entry-content {
  max-width: var(--inovva-wrap) !important;
  margin: 0 auto !important;
  padding: 0 32px 60px !important;
}
.inovva-account-hero,
.inovva-thankyou-hero {
  max-width: var(--inovva-wrap);
  margin: 0 auto;
  padding: 58px 0 26px;
}
.inovva-account-hero--compact {
  padding-top: 42px;
}
.inovva-account-label,
.inovva-thankyou-label {
  display: inline-block;
  color: var(--inovva-cyan);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.inovva-account-hero h1,
.inovva-thankyou-hero h1 {
  color: #333333;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.03em;
  margin: 0;
}
.inovva-account-hero p,
.inovva-thankyou-hero p {
  color: #666666;
  max-width: 700px;
  margin: 16px 0 0;
  line-height: 1.7;
}
.inovva-account-hero p strong,
.inovva-thankyou-hero p strong {
  color: #333333;
}
.inovva-account-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}
.inovva-account-trust div {
  background: rgba(13,31,60,.78);
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 15px 16px;
}
.inovva-account-trust strong {
  display: block;
  color: #333333;
  font-size: .82rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.inovva-account-trust span {
  display: block;
  color: #666666;
  font-size: .76rem;
  line-height: 1.45;
}
body.woocommerce-account .woocommerce,
body.woocommerce-order-received .woocommerce {
  max-width: var(--inovva-wrap);
  margin: 0 auto;
}
body.woocommerce-account .u-columns,
body.woocommerce-account .woocommerce-MyAccount-content,
body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-order-received .woocommerce-order,
body.woocommerce-order-received .woocommerce-order-details,
body.woocommerce-order-received .woocommerce-customer-details {
  background: rgba(13,31,60,.78) !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 14px !important;
}
body.woocommerce-account .u-columns {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}
body.woocommerce-account .u-column1,
body.woocommerce-account .u-column2 {
  background: rgba(13,31,60,.78);
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 22px;
}
body.woocommerce-account .u-column1 h2,
body.woocommerce-account .u-column2 h2,
body.woocommerce-account .woocommerce-MyAccount-content h2,
body.woocommerce-account .woocommerce-MyAccount-content h3,
body.woocommerce-order-received .woocommerce-order-details__title,
body.woocommerce-order-received .woocommerce-column__title {
  color: #333333 !important;
  font-size: .98rem !important;
  font-weight: 900 !important;
  margin: 0 0 16px !important;
}
body.woocommerce-account .woocommerce-form-login,
body.woocommerce-account .woocommerce-form-register {
  margin: 0 !important;
}
body.woocommerce-account .woocommerce-form-login .button,
body.woocommerce-account .woocommerce-form-register .button,
body.woocommerce-account .woocommerce-MyAccount-content .button,
body.woocommerce-order-received .button {
  min-height: 46px !important;
  border-radius: 10px !important;
  font-weight: 800 !important;
}
body.woocommerce-account .woocommerce-MyAccount-navigation {
  padding: 16px !important;
}
body.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
body.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 10px;
  color: #666666 !important;
  font-weight: 700;
  text-decoration: none !important;
  background: rgba(10,22,40,.35);
  border: 1px solid transparent;
  transition: background .18s, color .18s, border-color .18s;
}
body.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  color: #ffffff !important;
  background: rgba(0,161,233,.16);
  border-color: rgba(0,161,233,.3);
}
body.woocommerce-account .woocommerce-MyAccount-content {
  padding: 22px !important;
}
body.woocommerce-account .woocommerce-MyAccount-content p,
body.woocommerce-order-received .woocommerce-order p {
  color: #666666;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table,
body.woocommerce-order-received .shop_table,
body.woocommerce-order-received .customer_details,
body.woocommerce-order-received .woocommerce-order-overview {
  margin-top: 0 !important;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table,
body.woocommerce-order-received .shop_table {
  border: 1px solid #e5e5e5 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}
body.woocommerce-order-received .woocommerce-order {
  padding: 22px !important;
  margin-bottom: 20px !important;
}
body.woocommerce-order-received .woocommerce-thankyou-order-received {
  background: rgba(56,189,248,.08) !important;
  border: 1px solid rgba(56,189,248,.22) !important;
  border-radius: 10px !important;
  color: #333333 !important;
  font-weight: 700;
  padding: 16px 18px !important;
}
body.woocommerce-order-received .woocommerce-order-overview {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0 !important;
}
body.woocommerce-order-received .woocommerce-order-overview li {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 14px 16px;
  color: #666666;
  font-size: .76rem;
  line-height: 1.5;
}
body.woocommerce-order-received .woocommerce-order-overview li strong {
  display: block;
  color: #333333;
  font-size: .9rem;
  margin-top: 4px;
}
body.woocommerce-order-received .woocommerce-order-details,
body.woocommerce-order-received .woocommerce-customer-details {
  padding: 22px !important;
  margin-bottom: 20px !important;
}
.woocommerce-page input.input-text, .woocommerce-page select, .woocommerce-page textarea {
  background: #ffffff !important; border: 1px solid #e5e5e5 !important; color: #333333 !important;
  border-radius: 8px !important; font-size: .87rem !important; padding: 12px 14px !important;
}
.woocommerce-page input.input-text:focus, .woocommerce-page select:focus, .woocommerce-page textarea:focus {
  border-color: #00a1e9 !important; outline: none !important; box-shadow: 0 0 0 3px rgba(0,161,233,.15) !important;
}
.woocommerce-page label { color: #666666 !important; font-size: .82rem !important; font-weight: 600 !important; }
.woocommerce .woocommerce-breadcrumb { color: #333333 !important; font-size: .78rem !important; padding: 14px 0 !important; }
.woocommerce .woocommerce-breadcrumb a { color: #666666 !important; }
.woocommerce .woocommerce-breadcrumb a:hover { color: #00a1e9 !important; }
.woocommerce-message, .woocommerce-info { background: rgba(0,161,233,.08) !important; border-top-color: #00a1e9 !important; color: #666666 !important; }
.woocommerce-error { background: rgba(200,0,50,.07) !important; color: #666666 !important; }


   ============================================================ */



   ============================================================ */

  background: #f3f3f3;
  border-top: 1px solid #e5e5e5;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}



  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; align-items: start;
}




  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; background: #00a1e9; color: #0a1628;
  font-size: .82rem; font-weight: 900; border-radius: 7px; flex-shrink: 0;
}





  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 9px; border: 1px solid #e5e5e5;
  color: #666666 !important; background: transparent; text-decoration: none !important;
  transition: color .18s, border-color .18s, background .18s, transform .18s;
}

















  display: inline-flex; align-items: center; justify-content: center;
  padding: 5px 10px; border: 1px solid #e5e5e5; border-radius: 6px;
  font-size: .68rem; font-weight: 700; color: #666666; letter-spacing: .05em;
  text-transform: uppercase; background: #ffffff;
  transition: border-color .18s, color .18s;
}


/* ============================================================
   18. RESPONSIVO GERAL
   ============================================================ */
@media (max-width: 1024px) {
  .dif-grid { grid-template-columns: repeat(2,1fr); }
  .prods-grid { grid-template-columns: repeat(2,1fr); }
  
  
  
}
@media (max-width: 900px) {
  .ih-nav, .ih-cta { display: none; }
  .ih-burger { display: flex; }
  .ih-inner { padding: 0 20px; height: 62px; }
}
@media (max-width: 768px) {
  body.single-product .product-entry-wrapper { padding: 32px 20px 22px !important; }
  body.single-product .entry-summary { padding: 20px !important; }
  body.woocommerce-cart .woocommerce { padding: 0 20px 44px; }
  body.woocommerce-checkout .woocommerce { padding: 0 20px 44px; }
  body.woocommerce-account .entry-content,
  body.woocommerce-order-received .entry-content { padding: 0 20px 44px !important; }
  .inovva-cart-hero { padding: 44px 20px 22px; }
  .inovva-checkout-hero { padding: 44px 20px 22px; }
  .inovva-account-hero,
  .inovva-thankyou-hero { padding: 44px 0 22px; }
  .inovva-cart-trust { grid-template-columns: 1fr; }
  .inovva-checkout-steps,
  .inovva-checkout-trust { grid-template-columns: 1fr; }
  .inovva-account-trust,
  body.woocommerce-order-received .woocommerce-order-overview { grid-template-columns: 1fr; }
  body.woocommerce-account .u-columns { grid-template-columns: 1fr !important; }
  body.woocommerce-checkout form.checkout { grid-template-columns: 1fr; gap: 18px; }
  body.woocommerce-checkout form.checkout .ct-order-review { position: static; }
  body.woocommerce-checkout #order_review_heading,
  body.woocommerce-checkout #order_review,
  body.woocommerce-checkout .inovva-checkout-trust { grid-column: 1; }
  body.woocommerce-checkout #customer_details { padding: 18px !important; }
  .woocommerce-cart-form .coupon {
    width: 100% !important;
    flex-direction: column !important;
    margin-bottom: 10px !important;
  }
  .woocommerce-cart-form .coupon .input-text,
  .woocommerce-cart-form .coupon .button,
  .woocommerce-cart-form button[name="update_cart"] {
    width: 100% !important;
  }
  .inovva-pdp-meta { grid-template-columns: 1fr 1fr; }
  .woocommerce div.product form.cart { flex-direction: column !important; }
  .woocommerce div.product form.cart .quantity .qty,
  .woocommerce div.product form.cart .single_add_to_cart_button { width: 100% !important; }
  .inovva-hero { min-height: 70vh; padding: 80px 20px 60px; }
  .inovva-hero-carousel { min-height: 56vh; max-height: none; }
  .inovva-hero h1 { font-size: 2rem; }
  .inovva-hero-content { align-items: flex-end; padding: 104px 20px 64px; }
  .inovva-hero-overlay { background: linear-gradient(180deg, rgba(10,22,40,.08) 0%, rgba(10,22,40,.14) 38%, rgba(10,22,40,.72) 72%, rgba(10,22,40,.92) 100%); }
  .inovva-hero-slide h1 { font-size: 2rem; }
  .cats-grid { grid-template-columns: 1fr; }
  .prods-grid { grid-template-columns: 1fr 1fr; }
  .depos-grid { grid-template-columns: 1fr; }
  .testes-grid { grid-template-columns: 1fr; }
  .dif-grid { grid-template-columns: 1fr 1fr; }
  .inovva-sec { padding: 56px 20px; }
  .cta-box { padding: 36px 24px; }
  .cta-box-lite { flex-direction: column; align-items: flex-start; padding: 36px 24px; }
  .inovva-trust-bar { grid-template-columns: 1fr 1fr; }
  .inovva-specs-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  
  
  
  
  
  
  
}
@media (max-width: 480px) {
  .inovva-pdp-meta { grid-template-columns: 1fr; }
  .prods-grid { grid-template-columns: 1fr; }
  .inovva-hero-ctas { flex-direction: column; align-items: center; }
  .inovva-hero-copy .inovva-hero-ctas { align-items: stretch; }
  .inovva-hero h1 { font-size: 1.75rem; }
  .inovva-hero-slide h1 { font-size: 1.75rem; }
  .inovva-hero-carousel { min-height: 48vh; }
  .dif-grid { grid-template-columns: 1fr; }
  .inovva-trust-bar { grid-template-columns: 1fr; }
  .cat-card-lite { padding: 32px 24px; }
  .ih-inner { padding: 0 16px; height: 58px; }
  
}
/* ============================================================
   MENU ICONS â€” alinhamento icone + texto
   ============================================================ */
.ih-menu > li > a,
.ih-mobile-list > li > a {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}
.ih-menu > li > a svg,
.ih-mobile-list > li > a svg {
  flex-shrink: 0;
  opacity: .55;
  transition: opacity .18s;
}
.ih-menu > li > a:hover svg,
.ih-menu > li.current-menu-item > a svg {
  opacity: 1;
}
.ih-mobile-list > li > a:hover svg { opacity: 1; }

/* WhatsApp item do menu â€” destaque verde sutil */
/* ============================================================
   PRODUCT CARDS â€” Estilo inovvashop.com.br
   Fundo azul escuro, specs, parcelamento, badge de nÃ­vel
   ============================================================ */

/* Paleta de referÃªncia */
:root {
  --card-bg: #ffffff;
  --card-bg-img: #f7f7f7;
  --card-border: #e5e5e5;
  --card-spec-bg: #f7f9fa;
  --card-spec-border: #e5e5e5;
  --card-blue: #00a1e9;
  --card-blue-dim: #0087c7;
  --card-text: #333333;
  --card-muted: #666666;
  --card-badge-bg: rgba(0,161,233,0.10);
  --card-badge-border: rgba(0,161,233,0.25);
}

/* ---- Reset grid WooCommerce ---- */
body.woocommerce ul.products,
body.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 24px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ---- Card base ---- */
body.woocommerce ul.products li.product,
body.woocommerce-page ul.products li.product {
  background: var(--card-bg) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
  position: relative !important;
}
body.woocommerce ul.products li.product:hover,
body.woocommerce-page ul.products li.product:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 48px rgba(0,0,0,.55) !important;
  border-color: rgba(56,189,248,.35) !important;
}

/* ---- Imagem ---- */
body.woocommerce ul.products li.product a img,
body.woocommerce-page ul.products li.product a img {
  width: 100% !important;
  aspect-ratio: 4/3 !important;
  object-fit: contain !important;
  object-position: center !important;
  background: var(--card-bg-img) !important;
  display: block !important;
  padding: 20px !important;
  transition: transform .4s ease !important;
  height: auto !important;
  margin: 0 !important;
}
body.woocommerce ul.products li.product:hover a img {
  transform: scale(1.04) !important;
}

/* ---- Wrapper de thumbnail (overflow hidden para o zoom) ---- */
body.woocommerce ul.products li.product .woocommerce-loop-product__link {
  display: block !important;
  overflow: hidden !important;
  background: var(--card-bg-img) !important;
  border-bottom: 1px solid var(--card-border) !important;
}

/* ---- Badge de categoria sobre a imagem ---- */
body.woocommerce ul.products li.product .woocommerce-loop-category__title,
body.woocommerce ul.products li.product .ast-woo-product-category {
  display: none !important;
}

/* ---- Corpo do card ---- */
body.woocommerce ul.products li.product > a:not(.woocommerce-loop-product__link),
body.woocommerce ul.products li.product .woocommerce-loop-product__title,
body.woocommerce ul.products li.product .price,
body.woocommerce ul.products li.product .inovva-card-body {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* ---- TÃ­tulo ---- */
body.woocommerce ul.products li.product .woocommerce-loop-product__title,
body.woocommerce ul.products li.product h2 {
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: var(--card-text) !important;
  padding: 18px 20px 10px !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  letter-spacing: -.01em !important;
}

/* ---- PreÃ§o ---- */
body.woocommerce ul.products li.product .price {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  padding: 0 20px 4px !important;
  margin: 0 !important;
}
body.woocommerce ul.products li.product .price .inovva-parc {
  display: block !important;
  font-size: .85rem !important;
  font-weight: 700 !important;
  color: var(--card-blue) !important;
  line-height: 1.3 !important;
  letter-spacing: -.01em !important;
  margin-top: 2px !important;
}
body.woocommerce ul.products li.product .price .inovva-avista {
  display: block !important;
  font-size: 1.3rem !important;
  color: #1a1a1a !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}
body.woocommerce ul.products li.product .price .woocommerce-Price-amount,
body.woocommerce ul.products li.product .price bdi {
  display: none !important;
}

/* ---- BotÃ£o Adicionar / Saiba mais ---- */
body.woocommerce ul.products li.product .button,
body.woocommerce ul.products li.product a.button,
body.woocommerce-page ul.products li.product .button {
  display: block !important;
  margin: 12px 20px 20px !important;
  width: calc(100% - 40px) !important;
  background: transparent !important;
  border: 1px solid #e5e5e5 !important;
  color: var(--card-text) !important;
  font-size: .85rem !important;
  font-weight: 600 !important;
  padding: 11px 0 !important;
  border-radius: 10px !important;
  text-align: center !important;
  letter-spacing: .01em !important;
  transition: background .2s, border-color .2s, color .2s !important;
  cursor: pointer !important;
  text-decoration: none !important;
}
body.woocommerce ul.products li.product .button:hover,
body.woocommerce-page ul.products li.product .button:hover {
  background: var(--card-blue-dim) !important;
  border-color: var(--card-blue-dim) !important;
  color: #fff !important;
}

/* ---- Tags de categoria abaixo do tÃ­tulo (CELULARES RUGGED etc) ---- */
body.woocommerce ul.products li.product .posted_in,
body.woocommerce ul.products li.product .cat-links {
  display: none !important;
}

/* Esconder rating vazio */
body.woocommerce ul.products li.product .star-rating { display: none !important; }

/* ---- BADGE de nÃ­vel no topo do card ---- */
.inovva-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.badge-entrada    { background: rgba(34,197,94,.12);  color: #16a34a; border: 1px solid rgba(34,197,94,.25); }
.badge-inter      { background: rgba(0,161,233,.10); color: #0087c7; border: 1px solid rgba(0,161,233,.25); }
.badge-top        { background: rgba(250,204,21,.12); color: #fde047; border: 1px solid rgba(250,204,21,.25); }
.badge-mais-vendido { background: rgba(250,204,21,.18); color: #facc15; border: 1px solid rgba(250,204,21,.4); }

/* ---- SPECS dentro do card ---- */
.inovva-card-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 20px 14px;
}
.inovva-spec-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-spec-bg);
  border: 1px solid var(--card-spec-border);
  border-radius: 8px;
  padding: 9px 12px;
}
.inovva-spec-row svg {
  color: var(--card-blue);
  flex-shrink: 0;
  opacity: .8;
}
.inovva-spec-row strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--card-text);
  line-height: 1.2;
}
.inovva-spec-row span {
  font-size: .72rem;
  color: var(--card-muted);
  line-height: 1.2;
}

/* ---- PÃ¡gina de categoria: filtros e header ---- */
.woocommerce-products-header { margin-bottom: 24px; }
.inovva-shop-hero {
  max-width: var(--inovva-wrap);
  margin: 0 auto 26px;
  padding: 64px 32px 28px;
}
.inovva-shop-label {
  display: inline-block;
  color: var(--inovva-cyan);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.inovva-shop-hero h1 {
  color: #333333;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.03em;
  margin: 0;
  max-width: 760px;
}
.inovva-shop-description {
  color: #666666;
  font-size: .98rem;
  line-height: 1.7;
  max-width: 680px;
  margin-top: 18px;
}
.inovva-shop-description p { margin: 0; }
.inovva-shop-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.inovva-shop-pills span,
.inovva-shop-cats a {
  border: 1px solid rgba(56,189,248,.22);
  background: rgba(56,189,248,.07);
  color: var(--inovva-cyan);
  border-radius: 999px;
}
.inovva-shop-pills span {
  display: inline-flex;
  padding: 7px 13px;
  font-size: .74rem;
  font-weight: 700;
}
body:is(.term-celulares-rugged, .term-relogios) .hero-section[data-type],
body.term-motos-eletricas .hero-section[data-type] {
  display: none !important;
}
body:is(.term-celulares-rugged, .term-relogios) .inovva-shop-hero {
  padding: 62px 32px 32px;
  margin-bottom: 22px;
}
body:is(.term-celulares-rugged, .term-relogios) .inovva-shop-hero h1 {
  max-width: 720px;
  font-size: clamp(2.7rem, 4.6vw, 4rem);
  line-height: 1.02;
}
body:is(.term-celulares-rugged, .term-relogios) .woocommerce-result-count,
body:is(.term-celulares-rugged, .term-relogios) .woocommerce-ordering {
  display: none !important;
}
body:is(.term-celulares-rugged, .term-relogios) .inovva-shop-description {
  max-width: 640px;
  color: #666666;
  font-size: 1rem;
}
body:is(.term-celulares-rugged, .term-relogios) .inovva-shop-pills {
  gap: 10px;
  margin-top: 22px;
}
body:is(.term-celulares-rugged, .term-relogios) .inovva-shop-pills span {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  border: .5px solid rgba(0,195,255,.25);
  background: rgba(0,195,255,.08);
  color: #00a1e9;
}

#inovva-motos-landing {
  background: var(--inovva-bg);
  color: var(--inovva-text);
}
.inovva-mv-hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  background: #f7f7f7;
}
.inovva-mv-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: #0a1628;
}
.inovva-mv-hero-media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
}
.inovva-mv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.38) 38%, rgba(0,0,0,.76) 100%);
}
.inovva-mv-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
}
.inovva-mv-hero-copy {
  max-width: 720px;
}
.inovva-mv-label {
  color: var(--inovva-cyan);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 700;
  margin: 0 0 18px;
}
.inovva-mv-hero-copy h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #ffffff;
}
.inovva-mv-subtitle {
  margin: 18px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 1.02rem;
  line-height: 1.7;
}
.inovva-mv-hero-copy .ih-cta {
  margin-top: 28px;
}
.inovva-mv-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.inovva-mv-hero-badges span,
.inovva-mv-highlight {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
}
.inovva-mv-hero-badges span {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  color: #ffffff;
}
.inovva-mv-highlight {
  background: rgba(27,42,232,.1);
  border: 1px solid rgba(27,42,232,.24);
  color: #1b2ae8;
}
.inovva-mv-section {
  padding: 84px 24px;
}
.inovva-mv-section.is-surface {
  background: var(--inovva-surface);
}
.inovva-mv-section-head {
  margin-bottom: 40px;
}
.inovva-mv-section-head.is-centered {
  text-align: center;
}
.inovva-mv-model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.inovva-mv-model-card {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  padding: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: var(--inovva-surface);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.inovva-mv-model-card:hover,
.inovva-mv-model-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(27,42,232,.45);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.inovva-mv-model-media {
  padding: 18px;
  aspect-ratio: 4 / 3;
  background: #ffffff;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inovva-mv-model-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.inovva-mv-model-body {
  padding: 22px;
}
.inovva-mv-model-body h3 {
  margin: 0;
  color: #333333;
  font-size: 1.3rem;
  font-weight: 700;
}
.inovva-mv-model-body p {
  margin: 10px 0 22px;
  color: #666666;
  line-height: 1.6;
}
.inovva-mv-model-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 6px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
}
.inovva-mv-model-badge.is-sport {
  background: rgba(0,195,255,.15);
  color: var(--inovva-cyan);
}
.inovva-mv-model-badge.is-urban {
  background: rgba(27,42,232,.2);
  color: #333333;
}
.inovva-mv-detail {
  display: none;
  margin-top: 32px;
  padding: 34px;
  border-radius: 18px;
  background: #f7f7f7;
  border: 1px solid rgba(255,255,255,.08);
}
.inovva-mv-detail.is-active {
  display: block;
}
.inovva-mv-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}
.inovva-mv-detail-head h2 {
  margin: 0;
  color: #333333;
  font-size: 2rem;
  font-weight: 700;
}
.inovva-mv-detail-head p {
  margin: 8px 0 0;
  color: #666666;
}
.inovva-mv-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 28px;
}
.inovva-mv-main-image {
  background: #ffffff;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.inovva-mv-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.inovva-mv-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  overflow-x: auto;
}
.inovva-mv-thumb {
  width: 84px;
  min-width: 84px;
  height: 84px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
}
.inovva-mv-thumb.is-active {
  border-color: var(--inovva-primary);
  box-shadow: inset 0 0 0 1px var(--inovva-primary);
}
.inovva-mv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inovva-mv-buybox {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.inovva-mv-meta-label {
  margin: 0;
  color: #666666;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.inovva-mv-colors {
  display: flex;
  align-items: center;
  gap: 12px;
}
.inovva-mv-color {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: var(--mv-color);
  cursor: pointer;
}
.inovva-mv-color.is-active {
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 2px var(--inovva-cyan);
}
.inovva-mv-price {
  color: #333333;
  font-size: 2rem;
  font-weight: 800;
}
.inovva-mv-price-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.28);
  color: #22c55e;
  font-size: .78rem;
  font-weight: 700;
}
.inovva-mv-installments {
  margin: 0;
  color: #666666;
  font-size: .88rem;
}
.inovva-mv-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 10px;
  background: var(--inovva-whatsapp);
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none !important;
  transition: opacity .18s ease;
}
.inovva-mv-whatsapp:hover {
  opacity: .92;
}
.inovva-mv-spec-grid,
.inovva-mv-shared-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.inovva-mv-spec-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.inovva-mv-spec-card strong {
  color: var(--inovva-cyan);
  font-size: 1.3rem;
  font-weight: 700;
}
.inovva-mv-spec-card span {
  color: #666666;
  font-size: .78rem;
}
.inovva-mv-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .95fr);
  gap: 30px;
  align-items: start;
}
.inovva-mv-copy {
  color: #666666;
  line-height: 1.8;
  margin: 20px 0 24px;
  max-width: 620px;
}
.inovva-mv-compare {
  padding: 24px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.inovva-mv-compare h3 {
  margin: 0 0 18px;
  color: #333333;
}
.inovva-mv-compare-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 0;
  font-size: .88rem;
}
.inovva-mv-compare-grid > div {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.inovva-mv-compare-grid .is-positive {
  color: #22c55e;
}
.inovva-mv-compare-grid .is-muted {
  color: #666666;
}
.inovva-mv-faqs {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inovva-mv-faq {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding: 0 20px;
}
.inovva-mv-faq summary {
  list-style: none;
  cursor: pointer;
  color: #333333;
  font-weight: 600;
  padding: 18px 0;
}
.inovva-mv-faq summary::-webkit-details-marker {
  display: none;
}
.inovva-mv-faq p {
  margin: 0 0 18px;
  color: #666666;
  line-height: 1.7;
}
.inovva-mv-economy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.inovva-mv-economy-card {
  padding: 32px;
  border-radius: 14px;
  text-align: center;
}
.inovva-mv-economy-card strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}
.inovva-mv-economy-card span,
.inovva-mv-economy-card small {
  display: block;
  margin-top: 8px;
}
.inovva-mv-economy-card.is-cost {
  background: rgba(220,38,38,.08);
  border: 1px solid rgba(220,38,38,.2);
}
.inovva-mv-economy-card.is-cost strong {
  color: #f87171;
}
.inovva-mv-economy-card.is-saving {
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
}
.inovva-mv-economy-card.is-saving strong {
  color: #22c55e;
}
.inovva-mv-economy-card span {
  color: #666666;
}
.inovva-mv-economy-card small {
  color: #666666;
}
.inovva-mv-economy-note {
  margin: 22px 0 0;
  text-align: center;
  color: #22c55e;
  font-weight: 600;
}
.inovva-mv-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.inovva-mv-action-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.inovva-mv-action-card {
  padding: 28px;
  border-radius: 14px;
  background: var(--inovva-bg);
  border: 1px solid rgba(255,255,255,.08);
}
.inovva-mv-action-card h3 {
  margin: 18px 0 10px;
  color: #333333;
  font-size: 1.15rem;
}
.inovva-mv-action-card p {
  margin: 0 0 20px;
  color: #666666;
  line-height: 1.7;
}
.inovva-mv-action-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(34,197,94,.15);
  color: #22c55e;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.inovva-mv-action-card .prod-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.inovva-mv-action-card .prod-btn.is-solid {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}
.inovva-mv-final-cta {
  padding: 84px 24px;
  background: var(--inovva-surface-2);
  text-align: center;
}
.inovva-mv-final-cta h2 {
  margin: 0;
  color: #333333;
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.inovva-mv-final-cta p {
  margin: 14px 0 0;
  color: #666666;
}
.inovva-mv-final-cta > .inovva-wrap > span {
  display: inline-flex;
  margin-top: 20px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34,197,94,.14);
  color: #22c55e;
  font-size: .8rem;
  font-weight: 700;
}
.inovva-mv-final-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .inovva-mv-model-grid,
  .inovva-mv-detail-grid,
  .inovva-mv-two-col,
  .inovva-mv-action-grid,
  .inovva-mv-economy-grid {
    grid-template-columns: 1fr;
  }
  .inovva-mv-spec-grid,
  .inovva-mv-shared-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .inovva-mv-detail-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .inovva-mv-hero-inner,
  .inovva-mv-section,
  .inovva-mv-final-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
  .inovva-mv-hero-copy h1 {
    font-size: 2.6rem;
  }
  .inovva-mv-hero-badges,
  .inovva-mv-final-actions {
    flex-direction: column;
  }
  .inovva-mv-spec-grid,
  .inovva-mv-shared-grid {
    grid-template-columns: 1fr;
  }
  .inovva-mv-detail {
    padding: 24px;
  }
  .inovva-mv-model-card,
  .inovva-mv-main-image,
  .inovva-mv-action-card,
  .inovva-mv-economy-card {
    border-radius: 12px;
  }
  .inovva-mv-compare {
    padding: 18px;
  }
  .inovva-mv-compare-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 6px;
    font-size: .78rem;
  }
}
.inovva-shop-cats {
  max-width: var(--inovva-wrap);
  margin: 0 auto 22px;
  padding: 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.inovva-shop-cats a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background .18s, border-color .18s, color .18s, transform .18s;
}
.inovva-shop-cats a:hover,
.inovva-shop-cats a.is-active {
  background: var(--inovva-primary);
  border-color: var(--inovva-primary);
  color: #ffffff !important;
  transform: translateY(-1px);
}
.inovva-shop-cats small {
  color: inherit;
  opacity: .72;
  font-size: .68rem;
}
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  float: none !important;
  margin-top: 0 !important;
  margin-bottom: 22px !important;
}
.woocommerce .woocommerce-notices-wrapper,
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
body.woocommerce ul.products,
body.woocommerce-page ul.products {
  max-width: var(--inovva-wrap);
  margin-left: auto !important;
  margin-right: auto !important;
}
.woocommerce-ordering select {
  background: #ffffff !important;
  border: 1px solid #e5e5e5 !important;
  color: #666666 !important;
  border-radius: 8px !important;
  padding: 8px 14px !important;
  font-size: .82rem !important;
}
.woocommerce-result-count {
  color: #333333 !important;
  font-size: .78rem !important;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.woocommerce-info.woocommerce-no-products-found {
  max-width: var(--inovva-wrap);
  margin: 0 auto 40px !important;
  border-radius: 12px;
}

body:is(.term-celulares-rugged, .term-relogios) ul.products {
  grid-template-columns: 1fr !important;
  gap: 24px !important;
}
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product {
  background: #f7f7f7 !important;
  border: .5px solid rgba(255,255,255,.08) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(27,42,232,.5) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.28) !important;
}
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product figure {
  margin: 0 !important;
}
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product figure > .ct-media-container,
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product > .woocommerce-loop-product__link:first-child {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 200px !important;
  padding: 0 !important;
  background: #ffffff !important;
  border-bottom: 0 !important;
  border-radius: 10px 10px 0 0 !important;
  overflow: hidden !important;
}
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product a img {
  height: 100% !important;
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  background: #ffffff !important;
  padding: 0 !important;
}
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product .woocommerce-loop-product__title,
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product h2 {
  padding: 20px 20px 0 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.35 !important;
  min-height: 64px;
}
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product .woocommerce-loop-product__title a,
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product h2 a {
  color: #333333 !important;
  text-decoration: none !important;
}
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product .entry-meta,
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product .meta-categories,
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product .posted_in,
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product .cat-links,
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product .inovva-parc-loop {
  display: none !important;
}
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product .price {
  display: flex !important;
  flex-direction: column !important;
  padding: 18px 20px 0 !important;
  gap: 3px !important;
}
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product .price .inovva-avista {
  display: block !important;
  margin-top: 0 !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  color: #1a1a1a !important;
}
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product .price .inovva-parc {
  display: block !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: #00a1e9 !important;
  margin-top: 2px !important;
}
body:is(.term-celulares-rugged, .term-relogios) .inovva-card-badge {
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  backdrop-filter: none;
}
body:is(.term-celulares-rugged, .term-relogios) .badge-entrada {
  background: rgba(0,195,255,.15);
  color: #00a1e9;
  border: .5px solid rgba(0,195,255,.25);
}
body:is(.term-celulares-rugged, .term-relogios) .badge-inter {
  background: rgba(27,42,232,.2);
  color: #333333;
  border: .5px solid rgba(123,159,255,.22);
}
body:is(.term-celulares-rugged, .term-relogios) .badge-top {
  background: rgba(255,193,7,.15);
  color: #ffc107;
  border: .5px solid rgba(255,193,7,.28);
}
body:is(.term-celulares-rugged, .term-relogios) .badge-mais-vendido {
  background: rgba(255,193,7,.9);
  color: #000000;
  border: 0 !important;
}
body:is(.term-celulares-rugged, .term-relogios) .inovva-card-specs {
  gap: 8px;
  padding: 18px 20px 0;
}
body:is(.term-celulares-rugged, .term-relogios) .inovva-spec-row {
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  border: .5px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.04);
}
body:is(.term-celulares-rugged, .term-relogios) .inovva-spec-row.is-highlight {
  border-color: rgba(0,195,255,.3);
  background: rgba(0,195,255,.07);
}
body:is(.term-celulares-rugged, .term-relogios) .inovva-spec-row svg {
  color: #00a1e9;
  opacity: 1;
}
body:is(.term-celulares-rugged, .term-relogios) .inovva-spec-row strong {
  font-size: 13px;
  font-weight: 600;
  color: #333333;
}
body:is(.term-celulares-rugged, .term-relogios) .inovva-spec-row span {
  font-size: 11px;
  color: #666666;
}
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product .ct-woo-card-actions {
  margin-top: auto;
  padding: 20px;
}
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product .button,
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product a.button {
  width: 100% !important;
  margin: 0 !important;
  border-radius: 8px !important;
  border: 1px solid #25d366 !important;
  background: #25d366 !important;
  color: #ffffff !important;
  padding: 16px 14px !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: .02em !important;
}
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product .button:hover,
body:is(.term-celulares-rugged, .term-relogios) ul.products li.product a.button:hover {
  background: #1ec25c !important;
  border-color: #1ec25c !important;
  color: #ffffff !important;
}

/* ---- Shop / Archive background ---- */
body.post-type-archive-product,
body.tax-product_cat,
body.woocommerce {
  background: #f3f3f3 !important;
}
body.post-type-archive-product .ct-main,
body.tax-product_cat .ct-main,
body.woocommerce .ct-main {
  background: #f3f3f3 !important;
}

/* ---- Responsivo ---- */
@media (max-width: 768px) {
  .inovva-shop-hero {
    padding: 44px 20px 24px;
  }
  .inovva-shop-cats {
    padding: 0 20px;
  }
  body.woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  body:is(.term-celulares-rugged, .term-relogios) .inovva-shop-hero {
    padding: 48px 20px 26px;
  }
  body:is(.term-celulares-rugged, .term-relogios) ul.products li.product .woocommerce-loop-product__title,
  body:is(.term-celulares-rugged, .term-relogios) ul.products li.product h2 {
    min-height: 0;
  }
}
@media (max-width: 480px) {
  .inovva-shop-hero h1 {
    font-size: 2rem;
  }
  .inovva-shop-cats {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .inovva-shop-cats a {
    flex: 0 0 auto;
  }
  body.woocommerce ul.products {
    grid-template-columns: 1fr !important;
  }
}
@media (min-width: 640px) {
  body:is(.term-celulares-rugged, .term-relogios) ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (min-width: 1100px) {
  body:is(.term-celulares-rugged, .term-relogios) ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* ============================================================
   INOVVA FOOTER v2 â€” Layout horizontal referencia
   ============================================================ */

.ct-footer { display: none !important; }

#inovva-footer {
  background: var(--inovva-surface);
  border-top: 1px solid var(--inovva-border);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.if-wrap {
  max-width: var(--inovva-wrap);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- Faixa principal ---- */
.if-main {
  padding: 40px 0;
}

.if-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* ---- Brand (esquerda) ---- */
.if-brand {
  flex-shrink: 0;
  min-width: 180px;
}

.if-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  margin-bottom: 10px;
}









.if-tagline {
  font-size: .875rem;
  color: var(--inovva-muted-2);
  line-height: 1.55;
  margin: 0;
  max-width: 280px;
}

/* ---- Nav central (links horizontais) ---- */
.if-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  justify-content: center;
  flex: 1;
}

.if-nav-link {
  font-size: .875rem;
  font-weight: 400;
  color: var(--inovva-muted-2) !important;
  text-decoration: none !important;
  padding: 0;
  border-radius: 6px;
  transition: color .18s, background .18s;
  white-space: nowrap;
}

.if-nav-link:hover {
  color: #333333 !important;
  background: transparent;
}

/* ---- Sociais (direita) ---- */
.if-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.if-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--inovva-muted-2) !important;
  text-decoration: none !important;
  transition: color .18s, border-color .18s, background .18s, transform .18s;
}

.if-social:hover {
  color: #333333 !important;
  border-color: var(--inovva-primary);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

/* ---- Divisor ---- */
.if-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--inovva-border) 20%, var(--inovva-border) 80%, transparent);
  margin: 0 32px;
}

/* ---- Barra inferior ---- */
.if-bottom {
  padding: 20px 0;
}

.if-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.if-bottom-left p {
  font-size: .75rem;
  color: var(--inovva-muted-2);
  line-height: 1.7;
  margin: 0;
  max-width: none;
}

.if-bottom-left strong {
  color: #666666;
  font-weight: 600;
}

/* ---- Responsivo ---- */
@media (max-width: 900px) {
  .if-main-inner {
    flex-wrap: wrap;
    gap: 28px;
  }
  .if-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }
  .if-socials {
    order: 2;
  }
}

@media (max-width: 600px) {
  .if-main { padding: 32px 0; }
  .if-wrap { padding: 0 20px; }
  .if-divider { margin: 0 20px; }
  .if-bottom-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .if-nav-link { font-size: .78rem; }
}


   Texto estilizado: iNOVVA branco bold + SHOP azul claro
   ============================================================ */

/* Wrapper texto */
.ih-logo-text,


/* iNOVVA â€” branco, ultra-bold */
.ih-logo-inovva,


/* SHOP â€” azul claro, leve, tracking generoso */
.ih-logo-shop,


/* Imagem de logo (caso use upload) */
.ih-logo-img,

/* ============================================================
   LOGO iNOVVA SHOP â€” Fiel Ã  referÃªncia
   "i" minÃºsculo fino + "NOVVA" maiÃºsculo bold + "SHOP" azul
   ============================================================ */

.ih-logo-text,
.if-logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  line-height: 1;
  text-decoration: none !important;
}

/* Bloco iNOVVA como unidade Ãºnica */
.ih-logo-inovva,
.if-logo-inovva {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #333333;
  letter-spacing: -0.01em;
  line-height: 1;
  font-style: normal;
  text-transform: none;
  /* "i" minusculo + "NOVVA" maiusculo renderizado via texto direto no HTML */
}

/* O "i" dentro de iNOVVA fica levemente mais fino via span interno */
.ih-logo-inovva .logo-i,
.if-logo-inovva .logo-i {
  font-weight: 300;
  font-size: 1.2rem;
  color: #333333;
  letter-spacing: 0;
}

/* SHOP */
.ih-logo-shop,
.if-logo-shop {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--inovva-cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  align-self: center;
}

.ih-logo-img,
.if-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Cabecalho fica sempre com fundo azul-marinho escuro (mesmo com o tema claro),
   entao a logo do header precisa continuar branca. A do rodape (fundo claro) permanece escura acima. */
.ih-logo-inovva,
.ih-logo-inovva .logo-i {
  color: #ffffff;
}

/* ============================================================
   24. PDP RUGGED REFINO
   ============================================================ */
.inovva-pdp-shell {
  max-width: var(--inovva-wrap);
  margin: 0 auto;
  padding: 40px 32px 72px;
}

.inovva-pdp-hero {
  position: relative;
}

.inovva-pdp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.inovva-pdp-gallery-shell,
.inovva-pdp-summary-shell,
.inovva-pdp-body .woocommerce-tabs .panel,
.inovva-pdp-body .related,
.inovva-pdp-body .up-sells {
  background: linear-gradient(180deg, rgba(17, 34, 88, 0.92), rgba(10, 22, 40, 0.96));
  border: 1px solid rgba(69, 117, 202, 0.24);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.inovva-pdp-gallery-shell {
  padding: 20px;
}

.inovva-pdp-summary-shell {
  padding: 28px;
}

.inovva-pdp-shell .woocommerce-product-gallery {
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}

.inovva-pdp-shell .woocommerce-product-gallery__image,
.inovva-pdp-shell .woocommerce-product-gallery__wrapper,
.inovva-pdp-shell .woocommerce-product-gallery img {
  border-radius: 14px !important;
}

.inovva-pdp-shell .flex-control-thumbs {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px !important;
}

.inovva-pdp-shell .flex-control-thumbs li {
  margin: 0 !important;
}

.inovva-pdp-shell .flex-control-thumbs img {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(69, 117, 202, 0.18) !important;
  border-radius: 10px;
  padding: 6px;
  opacity: 1 !important;
}

.inovva-pdp-intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.inovva-pdp-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.inovva-pdp-kicker,
.inovva-pdp-hero-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  min-height: 30px;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inovva-pdp-kicker {
  color: var(--inovva-cyan);
  background: rgba(0, 195, 255, 0.08);
  border: 1px solid rgba(0, 195, 255, 0.22);
}

.inovva-pdp-hero-tag {
  color: #333333;
  background: rgba(27, 42, 232, 0.18);
  border: 1px solid rgba(80, 108, 255, 0.26);
}

.inovva-pdp-subtitle {
  margin: 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
}

.inovva-pdp-shell .product_title {
  margin-bottom: 8px !important;
}

.inovva-pdp-shell .price {
  margin-bottom: 0 !important;
}

.inovva-pdp-payment {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
}

.inovva-pdp-payment-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.24);
  color: #1d6c3b;
  font-size: 12px;
  font-weight: 700;
}

.inovva-pdp-pix-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.inovva-pdp-pix-price strong {
  color: #1d6c3b;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0;
}

.inovva-pdp-pix-price span {
  color: #666666;
  font-size: 14px;
  font-weight: 600;
}

.inovva-pdp-shell .inovva-parcelamento {
  width: fit-content;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(69, 117, 202, 0.22);
  color: #333333;
}

.inovva-pdp-shell .inovva-parcelamento span {
  color: #666666;
  font-size: 13px;
}

.inovva-pdp-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}

.inovva-pdp-feature-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(69, 117, 202, 0.18);
  color: #666666;
  font-size: 12px;
  font-weight: 600;
}

.inovva-pdp-shell .woocommerce-product-details__short-description {
  color: #666666 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

.inovva-pdp-shell form.cart {
  margin-top: 20px !important;
}

.inovva-pdp-shell form.cart .ct-cart-actions {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.inovva-pdp-shell form.cart .single_add_to_cart_button {
  min-height: 54px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #00a1e9, #33b5f0) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 40px rgba(0, 92, 255, 0.26);
}

.inovva-pdp-shell form.cart .single_add_to_cart_button:hover {
  background: linear-gradient(135deg, #00a1e9, #33b5f0) !important;
}

.inovva-pdp-shell .quantity .qty {
  min-height: 54px !important;
  border-radius: 999px !important;
}

.inovva-pdp-shell .inovva-whatsapp-btn {
  min-height: 52px;
  border-radius: 999px;
  margin-top: 14px;
}

.inovva-pdp-shell .inovva-pdp-meta,
.inovva-pdp-shell .inovva-specs-grid {
  margin-top: 18px;
}

.inovva-pdp-shell .inovva-pdp-meta-item,
.inovva-pdp-shell .inovva-spec-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(69, 117, 202, 0.18);
}

.inovva-pdp-shell .product_meta {
  display: none !important;
}

.inovva-pdp-shell .inovva-trust-bar {
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(69, 117, 202, 0.18);
  border-bottom: 0;
}

.inovva-pdp-body {
  margin-top: 28px;
  display: grid;
  gap: 24px;
}

.inovva-pdp-body .woocommerce-tabs {
  margin-top: 0 !important;
}

.inovva-pdp-body .woocommerce-tabs ul.tabs {
  margin: 0 0 18px !important;
}

.inovva-pdp-body .woocommerce-tabs .panel {
  padding: 28px !important;
}

.inovva-pdp-body .related,
.inovva-pdp-body .up-sells {
  padding: 24px;
}

.inovva-pdp-body .related > h2,
.inovva-pdp-body .up-sells > h2 {
  margin-top: 0;
  margin-bottom: 18px;
}

@media (max-width: 999.98px) {
  .inovva-pdp-shell {
    padding: 28px 20px 56px;
  }

  .inovva-pdp-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .inovva-pdp-gallery-shell,
  .inovva-pdp-summary-shell {
    padding: 18px;
  }

  .inovva-pdp-shell .inovva-trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 689.98px) {
  .inovva-pdp-shell .flex-control-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .inovva-pdp-shell form.cart .ct-cart-actions {
    flex-direction: column;
  }

  .inovva-pdp-shell .inovva-pdp-meta,
  .inovva-pdp-shell .inovva-specs-grid,
  .inovva-pdp-shell .inovva-trust-bar {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   25. INSTITUTIONAL PAGES
   ============================================================ */
body.page.inovva-marketing-surface {
  background: #ffffff !important;
}

body.page.inovva-marketing-surface .ct-container,
body.page.inovva-marketing-surface .ct-container-xl,
body.page.inovva-marketing-surface .entry-content,
body.page.inovva-marketing-surface .ct-page-content,
body.page.inovva-marketing-surface .ct-content-area article {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.page.inovva-marketing-surface .ct-page-header,
body.page.inovva-marketing-surface .hero-section.is-width-constrained,
body.page.inovva-marketing-surface .entry-header {
  display: none !important;
}

body.page.inovva-marketing-surface .ct-main,
body.page.inovva-marketing-surface main,
body.page.inovva-marketing-surface #main,
body.page.inovva-marketing-surface #content,
body.page.inovva-marketing-surface .ct-content-area,
body.page.inovva-marketing-surface .site-main {
  background: #ffffff !important;
}

.inovva-page-hero {
  padding: 84px 0 28px;
}

.inovva-page-hero > .inovva-wrap,
.inovva-page-section > .inovva-wrap {
  max-width: 980px;
}

.inovva-page-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 195, 255, 0.08);
  border: 1px solid rgba(0, 195, 255, 0.22);
  color: var(--inovva-cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inovva-page-hero h1 {
  margin: 18px 0 0;
  color: #333333;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.inovva-page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.75;
}

.inovva-page-section {
  padding: 12px 0 80px;
}

.inovva-page-copy {
  display: grid;
  gap: 18px;
}

.inovva-page-copy p {
  margin: 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.82;
}

.inovva-page-copy strong {
  color: #333333;
}

.inovva-about-grid,
.inovva-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.inovva-about-card,
.inovva-contact-card,
.inovva-legal-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(69, 117, 202, 0.18);
  border-radius: 16px;
}

.inovva-about-card,
.inovva-contact-card {
  padding: 24px;
}

.inovva-about-card span,
.inovva-contact-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(27, 42, 232, 0.16);
  border: 1px solid rgba(80, 108, 255, 0.2);
  color: #333333;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inovva-about-card h2,
.inovva-contact-card h2,
.inovva-legal-card h2 {
  margin: 16px 0 0;
  color: #333333;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.inovva-about-card p,
.inovva-contact-card p,
.inovva-legal-card p,
.inovva-legal-card li,
.inovva-contact-card strong {
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
}

.inovva-contact-card.is-primary {
  background: linear-gradient(180deg, rgba(27, 42, 232, 0.22), rgba(13, 27, 62, 0.9));
  border-color: rgba(80, 108, 255, 0.28);
}

.inovva-contact-card a {
  display: inline-flex;
  margin-top: 18px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00a1e9, #33b5f0);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.inovva-contact-card:not(.is-primary) a {
  background: transparent;
  border: 1px solid rgba(69, 117, 202, 0.24);
  color: #333333;
}

.inovva-page-legal-grid {
  display: grid;
  gap: 16px;
}

.inovva-legal-card {
  padding: 24px;
}

.inovva-legal-card ul,
.inovva-legal-card ol {
  margin: 16px 0 0;
  padding-left: 20px;
}

.inovva-legal-card li + li {
  margin-top: 8px;
}

.inovva-legal-card a,
.inovva-contact-card a:hover,
.inovva-page-copy a {
  color: var(--inovva-cyan);
}

.inovva-legal-footnote {
  margin-top: 18px;
  color: #666666;
  font-size: 13px;
  line-height: 1.6;
}

body.page .cta-box-lite {
  margin-top: 20px;
}

@media (max-width: 999.98px) {
  .inovva-page-hero {
    padding-top: 70px;
  }

  .inovva-about-grid,
  .inovva-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 689.98px) {
  .inovva-page-section {
    padding-bottom: 56px;
  }

  .inovva-page-hero p,
  .inovva-page-copy p,
  .inovva-about-card p,
  .inovva-contact-card p,
  .inovva-legal-card p,
  .inovva-legal-card li,
  .inovva-contact-card strong {
    font-size: 14px;
  }

  .inovva-about-card,
  .inovva-contact-card,
  .inovva-legal-card {
    padding: 20px;
  }
}

/* ============================================================
   26. RUGGED PDP STANDARD
   ============================================================ */
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-pdp-shell {
  max-width: var(--inovva-wrap);
  margin: 0 auto;
  padding: 28px 32px 72px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-pdp-shell {
  display: grid;
  gap: 28px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-pdp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 36px;
  align-items: start;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-shell,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-summary-shell,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-panel {
  background: linear-gradient(180deg, rgba(17,34,88,.92), rgba(10,22,40,.96));
  border: 1px solid rgba(69,117,202,.2);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,.2);
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-panel {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: none;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-shell {
  padding: 20px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-summary-shell {
  padding: 28px;
  position: sticky;
  top: 92px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-shell .woocommerce-product-gallery {
  background: #ffffff !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 0 !important;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-shell .woocommerce-product-gallery__wrapper,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-shell .woocommerce-product-gallery__image,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-shell .woocommerce-product-gallery img {
  border-radius: 16px !important;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-shell .flex-control-thumbs {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px !important;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-shell .flex-control-thumbs li {
  margin: 0 !important;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-shell .flex-control-thumbs img {
  background: rgba(255,255,255,.98);
  border-radius: 10px;
  border: 1px solid rgba(69,117,202,.24) !important;
  opacity: 1 !important;
  padding: 4px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-summary-top {
  display: grid;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-eyebrow,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-hero-tag,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-panel-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  width: fit-content;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-eyebrow,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-panel-eyebrow {
  color: var(--inovva-cyan);
  background: rgba(0,195,255,.08);
  border: 1px solid rgba(0,195,255,.22);
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-hero-tag {
  color: #333333;
  background: rgba(27,42,232,.16);
  border: 1px solid rgba(80,108,255,.24);
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-title {
  margin: 0;
  color: #333333;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 800;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-subtitle {
  margin: 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.7;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #666666;
  font-size: 14px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-rating strong {
  color: #333333;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-rating a {
  color: var(--inovva-cyan);
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-rating-stars {
  display: inline-flex;
  gap: 2px;
  color: rgba(245,196,81,.28);
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-rating-stars .is-filled {
  color: #f5c451;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-buybox {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-price-block {
  display: grid;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-price-label {
  color: #666666;
  font-size: 13px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-price {
  color: #333333;
  font-size: clamp(2.1rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-pix-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 14px;
  border-radius: 10px;
  color: #1d6c3b;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.26);
  font-size: 13px;
  font-weight: 700;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-pix-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-pix-price strong {
  color: #2fd67f;
  font-size: 2rem;
  font-weight: 800;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-pix-price span,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-installments {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
  margin: 4px 0 0;
}
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-pix-savings {
  color: #1d6c3b;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.25);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  margin: 8px 0 0;
  width: fit-content;
}
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-payment-methods {
  margin-top: 12px;
}
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-payment-label {
  display: block;
  font-size: 12px;
  color: #666666;
  margin-bottom: 6px;
}
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-payment-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  color: #333333;
  font-size: 12px;
  font-weight: 600;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-shipping-pill {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid rgba(0,195,255,.24);
  background: rgba(0,195,255,.08);
  color: var(--inovva-cyan);
  font-size: 12px;
  font-weight: 700;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-field {
  display: grid;
  gap: 8px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-field label {
  color: #666666;
  font-size: 14px;
  font-weight: 600;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-inline input,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-stepper input {
  width: 100%;
  min-height: 54px;
  border-radius: 10px;
  border: 1px solid rgba(69,117,202,.24);
  background: rgba(255,255,255,.02);
  color: #333333;
  padding: 0 16px;
  font-size: 16px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-inline button,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-stepper button {
  min-height: 54px;
  border: 0;
  border-radius: 10px;
  background: var(--inovva-primary);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 0 18px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-stepper {
  display: inline-grid;
  grid-template-columns: 54px 78px 54px;
  align-items: center;
  border: 1px solid rgba(69,117,202,.22);
  border-radius: 10px;
  overflow: hidden;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-stepper input {
  border: 0;
  background: transparent;
  text-align: center;
  padding: 0;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-stepper button {
  background: transparent;
  color: #333333;
  padding: 0;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-summary-card {
  border: 1px solid rgba(69,117,202,.18);
  border-radius: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,.02);
  display: grid;
  gap: 10px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-summary-card > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #666666;
  font-size: 14px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-summary-card strong {
  color: #333333;
  font-weight: 700;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-summary-card .inovva-rugged-total-row {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 15px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-summary-card .inovva-rugged-total-row strong {
  font-size: 2rem;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-summary-card .is-hidden {
  display: none;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-buy-now,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-whatsapp {
  min-height: 56px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none !important;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-buy-now {
  border: 0;
  background: #25d366;
  color: #ffffff;
  transition: background .2s;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-buy-now:hover:not(:disabled) {
  background: #1ec25c;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-buy-now:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-whatsapp {
  border: 1px solid rgba(37,211,102,.3);
  color: #25d366 !important;
  background: rgba(37,211,102,.08);
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-feedback {
  min-height: 18px;
  margin: 0;
  color: #666666;
  font-size: 12px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-feedback[data-state="success"] {
  color: #1d6c3b;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-feedback[data-state="error"] {
  color: #dc2626;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-feedback[data-state="warning"] {
  color: #666666;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-shipping-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-shipping-options[hidden] {
  display: none;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-shipping-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-shipping-option:has(input:checked) {
  border-color: #00a1e9;
  background: rgba(0,161,233,.05);
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-shipping-option input[type="radio"] {
  margin: 0;
  accent-color: #00a1e9;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-shipping-option-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-shipping-option-info strong {
  color: #333333;
  font-size: 13px;
  font-weight: 700;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-shipping-option-info small {
  color: #666666;
  font-size: 11px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-shipping-option-price {
  color: #333333;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-trust-row,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666666;
  font-size: 12px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-trust-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-trust-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #666666;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-pill-row span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(69,117,202,.18);
  color: #666666;
  font-size: 12px;
  font-weight: 600;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-pdp-body {
  display: grid;
  gap: 24px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-panel {
  padding: 28px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-panel h2,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-related-panel .related > h2 {
  margin: 16px 0 0;
  color: #333333;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 800;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-copy,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-richtext p,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-reviews-panel {
  color: #666666;
  font-size: 15px;
  line-height: 1.8;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-richtext {
  margin-top: 16px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-video-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-video-wrap {
  width: 100%;
  max-width: 380px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-video-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  border: 0;
  border-radius: 14px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-spec-table {
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  overflow: hidden;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-spec-row {
  display: grid;
  grid-template-columns: minmax(180px, .9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: 16px 18px;
  background: rgba(255,255,255,.015);
  border-top: 1px solid rgba(255,255,255,.05);
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-spec-row:first-child {
  border-top: 0;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-spec-row span {
  color: #666666;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-spec-row strong {
  color: #333333;
  font-weight: 600;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-warranty-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-warranty-card {
  padding: 24px;
  border-radius: 14px;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-warranty-card h3 {
  margin: 0 0 8px;
  color: #333333;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-warranty-card p {
  margin: 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-warranty-grid {
    grid-template-columns: 1fr;
  }
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-grid {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight {
  padding: 24px;
  border-radius: 14px;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #00a1e9;
  margin-bottom: 8px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 8px;
  line-height: 1.25;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-body {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin: 0 0 16px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-stat {
  padding: 10px 14px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  min-width: 96px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-stat.is-tag {
  padding: 8px 16px;
  border-radius: 999px;
  min-width: 0;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-stat.is-tag strong {
  font-size: 13px;
  font-weight: 700;
  color: #00a1e9;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-stat strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #1a1a1a;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-stat span {
  display: block;
  font-size: 11px;
  color: #666666;
  margin-top: 2px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight.has-icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight.has-icon.icon-right .inovva-rugged-highlight-visual {
  order: 2;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight.has-icon.icon-right .inovva-rugged-highlight-content {
  order: 1;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-icon.icon-camera,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-icon.icon-feather,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-icon.icon-flashlight,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-icon.icon-5g {
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,161,233,.14), rgba(0,161,233,0) 70%);
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-icon svg {
  width: 72px;
  height: 72px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-icon.icon-screen svg {
  width: 60px;
  height: 128px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-icon.icon-5g svg {
  width: 72px;
  height: 36px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-icon-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #00a1e9;
  text-align: center;
  line-height: 1.1;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-icon-value span {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  color: #666666;
  margin-top: 2px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-content {
  min-width: 0;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-related-panel .related,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-related-panel .products {
  margin: 0 !important;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-related-panel {
  padding: 24px;
}

@media (max-width: 999.98px) {
  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-pdp-shell {
    padding: 24px 20px 56px;
  }

  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-pdp-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-summary-shell {
    position: static;
  }
}

@media (max-width: 689.98px) {
  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-shell,
  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-summary-shell,
  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-panel {
    border-radius: 16px;
  }

  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-shell .flex-control-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-inline,
  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-spec-row {
    grid-template-columns: 1fr;
  }

  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight.has-icon,
  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight.has-icon.icon-right {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight.has-icon.icon-right .inovva-rugged-highlight-visual,
  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight.has-icon.icon-right .inovva-rugged-highlight-content {
    order: 0;
  }

  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-visual {
    align-items: center;
  }

  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-highlight-stats {
    justify-content: center;
  }

  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-stepper {
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-video-wrap {
    max-width: 300px;
  }
}

/* ============================================================
   27. RUGGED PDP FIDELITY PASS
   ============================================================ */
body.inovva-rugged-pdp .woocommerce-breadcrumb {
  display: none !important;
}

body.inovva-rugged-pdp .hero-section.is-width-constrained,
body.inovva-rugged-pdp .entry-header,
body.inovva-rugged-pdp .ct-breadcrumbs {
  display: none !important;
}

body.inovva-rugged-pdp #inovva-header.is-rugged-pdp .ih-logo-img {
  display: none;
}

body.inovva-rugged-pdp #inovva-header.is-rugged-pdp .ih-actions {
  gap: 0;
}

body.inovva-rugged-pdp #inovva-header.is-rugged-pdp .ih-inner {
  max-width: 1520px;
}

body.inovva-rugged-pdp .woocommerce-notices-wrapper:empty {
  display: none;
}

body.inovva-rugged-pdp .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) {
  margin-top: 8px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-pdp-hero {
  padding-top: 6px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-pdp-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  gap: 50px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-shell {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-summary-shell {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery {
  display: grid;
  gap: 18px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-stage {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: grid;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-frame {
  display: none;
  margin: 0;
  aspect-ratio: 1 / 1;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-frame.is-active {
  display: block;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-zoom {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,22,40,.92);
  padding: 24px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-lightbox[hidden] {
  display: none;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-lightbox-image {
  max-width: min(92vw, 900px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-lightbox-close,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-lightbox-prev,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-lightbox-next {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #ffffff;
  cursor: pointer;
  transition: background .2s;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-lightbox-close:hover,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-lightbox-prev:hover,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-lightbox-next:hover {
  background: rgba(255,255,255,.24);
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 26px;
  line-height: 1;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-lightbox-prev,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 30px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-lightbox-prev {
  left: 20px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-lightbox-next {
  right: 20px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-thumb {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border: 1px solid rgba(69,117,202,.24);
  border-radius: 8px;
  background: rgba(255,255,255,.98);
  padding: 3px;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-thumb.is-active {
  border-color: #00a1e9;
  box-shadow: 0 0 0 2px rgba(57,87,255,.2);
  transform: translateY(-1px);
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-summary-top {
  gap: 8px;
  padding-bottom: 22px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-eyebrow,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-panel-eyebrow {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  letter-spacing: .22em;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-title {
  font-size: 24px;
  line-height: 1.2;
  max-width: none;
  font-weight: 600;
  letter-spacing: 0;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-subtitle {
  font-size: 13px;
  line-height: 1.55;
  color: #666666;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-price-block,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-field {
  padding-top: 2px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-price-label {
  font-size: 12px;
  color: #666666;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-price {
  font-size: 36px;
  font-weight: 700;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-pix-price strong {
  font-size: 22px;
  font-weight: 700;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-pix-price span,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-installments,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-rating {
  font-size: 13px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-price-block {
  gap: 8px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-buybox {
  gap: 14px;
  margin-top: 16px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-inline input,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-stepper input {
  min-height: 52px;
  border-radius: 8px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-inline button,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-stepper button {
  min-height: 52px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-stepper {
  border-radius: 8px;
  grid-template-columns: 46px 72px 46px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-summary-card {
  border-radius: 10px;
  padding: 14px 16px;
  gap: 8px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-buy-now,
.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-whatsapp {
  min-height: 52px;
  border-radius: 10px;
  font-size: 15px;
}

.single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-pix-badge {
  border-radius: 8px;
}

@media (max-width: 999.98px) {
  body.inovva-rugged-pdp #inovva-header.is-rugged-pdp .ih-inner {
    max-width: none;
  }

  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-pdp-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-shell,
  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-summary-shell {
    min-width: 0;
    width: 100%;
  }

  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-summary-shell {
    position: static;
  }

  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-stage,
  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-frame,
  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-frame img {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 689.98px) {
  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-thumbs {
    flex-wrap: wrap;
    gap: 10px;
    overflow-x: visible;
  }

  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-thumb {
    width: calc(33.333% - 7px);
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-stage,
  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-frame,
  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-gallery-frame img {
    aspect-ratio: 1 / 1;
  }

  .single-product .inovva-pdp-shell:is(.product_cat-celulares-rugged, .product_cat-relogios) .inovva-rugged-title {
    font-size: 24px;
  }
}

.inovva-ml-reviews .woocommerce-Reviews-title {
  display: none;
}

.inovva-ml-rating-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 24px;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  margin: 4px 0 24px;
}

.inovva-ml-rating-average {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 140px;
}

.inovva-ml-rating-average strong {
  font-size: 2.6rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}

.inovva-ml-rating-stars {
  font-size: 18px;
  color: #d9d9d9;
  letter-spacing: 2px;
}

.inovva-ml-rating-stars .is-filled {
  color: #f5c451;
}

.inovva-ml-rating-count {
  font-size: 13px;
  color: #666666;
}

.inovva-ml-rating-bars {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.inovva-ml-rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #666666;
}

.inovva-ml-rating-bar-label {
  width: 34px;
  flex-shrink: 0;
}

.inovva-ml-rating-bar-track {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: #e5e5e5;
  overflow: hidden;
}

.inovva-ml-rating-bar-fill {
  display: block;
  height: 100%;
  background: #f5c451;
  border-radius: 4px;
}

.inovva-ml-rating-bar-count {
  width: 24px;
  text-align: right;
  flex-shrink: 0;
}

.inovva-ml-review-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inovva-ml-review {
  padding: 18px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #ffffff;
}

.inovva-ml-review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.inovva-ml-review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #00a1e9;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.inovva-ml-review-meta {
  display: flex;
  flex-direction: column;
}

.inovva-ml-review-author {
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
}

.inovva-ml-review-date {
  font-size: 12px;
  color: #666666;
}

.inovva-ml-review-verified {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: #1d6c3b;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.25);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.inovva-ml-review-stars {
  display: inline-flex;
  gap: 2px;
  font-size: 14px;
  color: #d9d9d9;
  margin-bottom: 8px;
}

.inovva-ml-review-stars .is-filled {
  color: #f5c451;
}

.inovva-ml-review-text {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
}

.inovva-ml-review-text p {
  margin: 0;
}

.inovva-ml-review-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.inovva-ml-review-photo {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.inovva-ml-review-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#reviews .comment-form-photos {
  margin: 12px 0;
}

#reviews .comment-form-photos label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 6px;
}

@media (max-width: 689.98px) {
  .inovva-ml-rating-summary {
    flex-direction: column;
    gap: 20px;
  }

  .inovva-ml-review-verified {
    margin-left: 0;
  }

  .inovva-ml-review-head {
    flex-wrap: wrap;
  }
}

/* ============================================================
   CART DRAWER (carrinho flutuante lateral)
   ============================================================ */
.inovva-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100010;
}

.inovva-cart-drawer[hidden] {
  display: none;
}

.inovva-cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0);
  transition: background .3s ease;
}

.inovva-cart-drawer.is-open .inovva-cart-drawer-backdrop {
  background: rgba(10, 22, 40, .55);
}

.inovva-cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 420px;
  max-width: 92vw;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
  box-shadow: -12px 0 40px rgba(0,0,0,.18);
}

.inovva-cart-drawer.is-open .inovva-cart-drawer-panel {
  transform: translateX(0);
}

body.inovva-cart-drawer-open {
  overflow: hidden;
}

.inovva-cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid #e5e5e5;
}

.inovva-cart-drawer-head h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
}

.inovva-cart-drawer-close {
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: #666666;
  cursor: pointer;
  padding: 4px 8px;
}

.inovva-cart-drawer-close:hover {
  color: #1a1a1a;
}

.inovva-cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inovva-cart-drawer-empty {
  color: #666666;
  font-size: .95rem;
  text-align: center;
  margin-top: 40px;
}

.inovva-cart-drawer-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.inovva-cart-drawer-item-thumb {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  flex-shrink: 0;
}

.inovva-cart-drawer-item-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f7f7f7;
}

.inovva-cart-drawer-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.inovva-cart-drawer-item-name {
  color: #1a1a1a;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.3;
}

.inovva-cart-drawer-item-name:hover {
  color: #00a1e9;
}

.inovva-cart-drawer-item-qty {
  color: #666666;
  font-size: .8rem;
}

.inovva-cart-drawer-item-total {
  color: #1a1a1a;
  font-size: .9rem;
  font-weight: 700;
}

.inovva-cart-drawer-item-remove {
  border: 0;
  background: transparent;
  color: #999999;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  align-self: start;
}

.inovva-cart-drawer-item-remove:hover {
  color: #dc2626;
}

.inovva-cart-drawer-footer {
  padding: 18px 22px 22px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inovva-cart-drawer-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}

.inovva-cart-drawer-subtotal span {
  color: #666666;
}

.inovva-cart-drawer-subtotal strong {
  color: #1a1a1a;
  font-size: 1.2rem;
  font-weight: 800;
}

.inovva-cart-drawer-continue,
.inovva-cart-drawer-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, opacity .2s;
}

.inovva-cart-drawer-continue {
  background: #f0f0f0;
  border: 0;
  color: #333333;
}

.inovva-cart-drawer-continue:hover {
  background: #e5e5e5;
}

.inovva-cart-drawer-checkout {
  background: #25d366;
  border: 0;
  color: #ffffff;
}

.inovva-cart-drawer-checkout:hover {
  background: #1ec25c;
}

@media (max-width: 480px) {
  .inovva-cart-drawer-panel {
    width: 100%;
    max-width: 100%;
  }
}

