/* ══════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  color: #333;
  background: #fdfdfd;
}

:root {
  --brand-blue: #0044cc;
  --accent: #00ffcc;
  --text-dark: #1a1a1a;
  --white: #ffffff;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ══════════════════════════════════════════════
   CONTAINER GLOBAL
══════════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
}

.site-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 40px;
  box-sizing: border-box;
}

#content.site-content {
  display: block;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

/* Barra superior azul */
.top-bar {
  background: #0044cc;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.top-bar p {
  margin: 0;
}

/* Área do logo + busca + carrinho */
.header-main-bg {
  background: #0099ff url("../images/header-background.png") center/cover no-repeat;
  padding: 30px 0;
  border-bottom: 4px solid #0044cc;
}

.header-flex {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 30px !important;
}

/* Logo */
.logo a {
  display: block;
}

.logo img {
  max-height: 80px;
  width: auto;
}

/* Barra de busca */
.search-wrapper {
  flex-grow: 1;
  max-width: 600px;
}

.search-wrapper form,
form.woocommerce-product-search {
  display: flex !important;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  width: 100%;
}

.search-wrapper input[type="search"],
.woocommerce-product-search input[type="search"] {
  border: none !important;
  padding: 15px 25px !important;
  width: 100% !important;
  outline: none !important;
  font-size: 16px !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #333;
}

.search-wrapper button[type="submit"],
.woocommerce-product-search button[type="submit"] {
  background: #00ffcc !important;
  border: none !important;
  padding: 0 35px !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  color: #0044cc !important;
  text-transform: uppercase !important;
  font-size: 16px !important;
  white-space: nowrap !important;
  transition: all 0.2s !important;
  border-radius: 0 !important;
  height: auto !important;
}

.search-wrapper button[type="submit"]:hover,
.woocommerce-product-search button[type="submit"]:hover {
  background: #00e6b8 !important;
  color: #002266 !important;
}


/* Carrinho */
.cart-icon {
  flex-shrink: 0;
}

.custom-cart-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f4ff;
  border: 2px solid #0044cc;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 800;
  color: #0044cc;
  font-size: 14px;
  transition: all 0.2s;
  white-space: nowrap;
}

.custom-cart-button:hover {
  background: #0044cc;
  color: #fff;
}

.cart-emoji {
  font-size: 20px;
}

/* Menu de Navegação (geek-shop style: white, centered) */
.main-navigation {
  background-color: #fcfcfc;
  border-bottom: 1px solid #eee;
  text-align: center;
  width: 100%;
}

.main-navigation .container {
  padding: 0 20px;
}

.main-navigation .menu,
.main-navigation ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.main-navigation .menu li,
.main-navigation ul li {
  display: inline-block;
}

.main-navigation .menu li a,
.main-navigation ul li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #444;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.main-navigation .menu li a:hover,
.main-navigation ul li a:hover {
  color: var(--brand-blue);
}

/* ══════════════════════════════════════════════
   HOMEPAGE — BARRA DE MARCAS
══════════════════════════════════════════════ */
.brands-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

.brands-bar .brands-label h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  color: #333;
  text-transform: uppercase;
  white-space: nowrap;
}

.brands-list {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.brand-item img {
  max-height: 32px;
  width: auto;
  filter: grayscale(40%);
  transition: filter 0.2s, transform 0.2s;
}

.brand-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ══════════════════════════════════════════════
   HOMEPAGE — BANNERS EM GRID (3 colunas)
══════════════════════════════════════════════ */
.home-banners.banners-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  margin: 24px 0 !important;
}

.banner-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.banner-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.banner-box a {
  display: block;
}

.banner-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════════════════════
   HOMEPAGE — VANTAGENS DA LOJA
══════════════════════════════════════════════ */
.store-advantages {
  margin: 32px auto;
}

.advantages-grid {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.advantage-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px 24px;
  flex: 1;
  min-width: 240px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
}

.advantage-card:hover {
  box-shadow: 0 4px 16px rgba(0, 68, 204, 0.12);
}

.advantage-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.adv-text h3 {
  margin: 0 0 4px 0;
  font-size: 13px;
  font-weight: 900;
  color: #0044cc;
  text-transform: uppercase;
}

.adv-text p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

/* ══════════════════════════════════════════════
   HOMEPAGE — TÍTULO DE SEÇÃO + PRODUTOS
══════════════════════════════════════════════ */
.home-products {
  margin: 32px auto;
}

.section-title {
  font-size: 24px;
  font-weight: 900;
  color: #222;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #0044cc;
  margin-top: 8px;
  border-radius: 2px;
}


/* ══════════════════════════════════════════════
   SINGLE PRODUCT — Layout Principal (gh-product-*)
   Features: breadcrumb, marca, preço De/Por,
   parcelas, abas, lightbox, relacionados
══════════════════════════════════════════════ */

/* ── Layout 50/50 ─────────────────────────── */
.gh-product-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 60px;
  box-sizing: border-box;
}

.gh-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
  align-items: start;
}

/* ── Coluna da galeria ────────────────────── */
.gh-product-gallery-col {
  position: sticky;
  top: 20px;
}

/* ── Breadcrumb ───────────────────────────── */
.gh-breadcrumb {
  margin-bottom: 16px;
  font-size: 13px;
  color: #888;
}

.gh-breadcrumb .woocommerce-breadcrumb {
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  font-size: 13px;
  color: #888;
}

.gh-breadcrumb a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: opacity 0.2s;
}

.gh-breadcrumb a:hover {
  opacity: 0.7;
}

/* ── Galeria ──────────────────────────────── */
.gh-gallery-wrapper {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.gh-gallery-wrapper .woocommerce-product-gallery {
  width: 100% !important;
  margin: 0 !important;
}

.gh-gallery-wrapper .woocommerce-product-gallery img {
  width: 100% !important;
  height: auto !important;
  cursor: zoom-in;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gh-gallery-wrapper .woocommerce-product-gallery img:hover {
  transform: scale(1.01);
}

.gh-zoom-hint {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ── Coluna Info ──────────────────────────── */
.gh-product-info-col {
  padding-top: 0;
}

/* ── Marca acima do título ────────────────── */
.gh-product-info-col .product-brand {
  font-size: 13px;
  color: #888;
  margin-bottom: 6px;
}

.gh-product-info-col .product-brand a.brand-link {
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s;
}

.gh-product-info-col .product-brand a.brand-link:hover {
  color: #003399;
}

/* ── Título ───────────────────────────────── */
.gh-product-title {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
  line-height: 1.2 !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
}

/* ── Badge de estoque ─────────────────────── */
.gh-stock-badge {
  margin-bottom: 16px;
}

.gh-in-stock {
  color: #1a7f37;
  font-size: 14px;
  font-weight: 700;
}

.gh-out-of-stock {
  color: #cc0000;
  font-size: 14px;
  font-weight: 700;
}

/* ══════════════════════════════════════════════
   3. BLOCO DE PREÇO: De / Por
══════════════════════════════════════════════ */
.gh-price-block {
  background: #f6f8ff;
  border: 1px solid #dde6ff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.gh-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.gh-label-de,
.gh-label-por {
  font-size: 13px;
  font-weight: 700;
  min-width: 32px;
  color: #888;
  text-transform: uppercase;
}

.gh-price-original {
  font-size: 15px;
  color: #999;
}

.gh-price-original del,
.gh-price-original .woocommerce-Price-amount {
  text-decoration: line-through;
  color: #999 !important;
  font-size: 15px !important;
}

.gh-price-current-row .gh-label-por {
  color: var(--brand-blue);
}

.gh-price-current .woocommerce-Price-amount {
  font-size: 32px !important;
  font-weight: 900 !important;
  color: var(--brand-blue) !important;
}

.gh-installment-summary {
  font-size: 13px;
  color: #555;
  margin: 8px 0 12px;
}

.gh-installment-summary strong .woocommerce-Price-amount {
  font-size: 13px !important;
  color: #1a7f37 !important;
  font-weight: 800 !important;
}

/* ── Botão "Ver parcelas" ─────────────────── */
.gh-installments-toggle {
  background: none;
  border: 1px solid var(--brand-blue);
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
  width: 100%;
  text-align: left;
}

.gh-installments-toggle:hover {
  background: var(--brand-blue);
  color: #fff;
}

/* ── Tabela de parcelamento ───────────────── */
.gh-installments-table {
  margin-top: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.gh-installments-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.gh-installments-table th {
  background: #eef2ff;
  color: var(--brand-blue);
  font-weight: 800;
  padding: 8px 10px;
  text-align: left;
  border-bottom: 2px solid #c5d5ff;
}

.gh-installments-table td {
  padding: 7px 10px;
  border-bottom: 1px solid #eee;
  color: #333;
}

.gh-installments-table tr:last-child td {
  border-bottom: none;
}

.gh-installments-table .gh-no-interest {
  background: #f0fff4;
}

.gh-tag-no-interest {
  color: #1a7f37;
  font-weight: 800;
  font-size: 11px;
  background: #d4f8e4;
  padding: 2px 7px;
  border-radius: 20px;
}

.gh-tag-interest {
  color: #c0392b;
  font-size: 11px;
  background: #fde8e8;
  padding: 2px 7px;
  border-radius: 20px;
}

/* ── Banner de envio ──────────────────────── */
.gh-shipping-banner {
  background: var(--brand-blue);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Add to cart wrapper ──────────────────── */
.gh-add-to-cart-wrapper {
  margin-bottom: 20px;
}

.gh-add-to-cart-wrapper .woocommerce div.product form.cart,
.woocommerce div.product form.cart {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  align-items: center !important;
  margin: 0 !important;
  max-width: 100% !important;
}

.woocommerce div.product form.cart div.quantity {
  margin: 0 !important;
}

.woocommerce div.product form.cart div.quantity input.qty {
  width: 65px !important;
  height: 52px !important;
  border: 2px solid #ddd !important;
  border-radius: 8px !important;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.woocommerce div.product form.cart button.single_add_to_cart_button {
  height: 52px !important;
  background: var(--brand-blue) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s;
  padding: 0 30px !important;
  flex-grow: 1;
  letter-spacing: 0.5px;
}

.woocommerce div.product form.cart button.single_add_to_cart_button:hover {
  background: #003399 !important;
  transform: translateY(-1px);
}

/* ── Shipping calc ────────────────────────── */
.gh-shipping-calc {
  background: #f9fafe;
  border: 1px solid #e0e8ff;
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 16px;
}

.gh-shipping-calc-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--brand-blue);
  margin: 0 0 10px;
}

/* ── Entrega local ────────────────────────── */
.gh-local-delivery p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.gh-link-entrega {
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: underline;
}

/* ── Meta (SKU rápido) ────────────────────── */
.gh-product-meta {
  margin-top: 12px;
  font-size: 12px;
  color: #aaa;
}

.gh-meta-item strong {
  color: #888;
}

/* ══════════════════════════════════════════════
   4+5. ABAS CUSTOMIZADAS (gh-tabs)
══════════════════════════════════════════════ */
.gh-product-tabs-section {
  margin: 40px 0 50px;
  border-top: 3px solid var(--brand-blue);
  border-radius: 0 0 12px 12px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.gh-tabs-nav {
  display: flex;
  gap: 0;
  background: #f0f4ff;
  border-radius: 0;
  overflow: hidden;
}

.gh-tab-btn {
  background: none;
  border: none;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 700;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  flex: 0 0 auto;
}

.gh-tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-blue);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.gh-tab-btn:hover {
  color: var(--brand-blue);
  background: #e4ecff;
}

.gh-tab-btn.gh-tab-active {
  color: var(--brand-blue);
  background: #fff;
}

.gh-tab-btn.gh-tab-active::after {
  transform: scaleX(1);
}

/* Conteúdo das abas */
.gh-tab-panel {
  padding: 32px 40px;
  max-width: 800px;
  /* Minimalista — não full-width */
}

.gh-tab-panel.gh-tab-active {
  display: block;
}

/* Descrição minimalista */
.gh-description-content {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
}

.gh-description-content p {
  margin-bottom: 16px;
}

.gh-description-content h2,
.gh-description-content h3,
.gh-description-content h4 {
  color: var(--brand-blue);
  margin-top: 24px;
  margin-bottom: 10px;
}

/* ── Tabela de informações técnicas ───────── */
.gh-info-table-wrapper {
  overflow-x: auto;
}

.gh-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.gh-info-table th {
  background: #f6f8ff;
  color: #555;
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  width: 220px;
  border-bottom: 1px solid #e8eeff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gh-info-table td {
  padding: 12px 16px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.gh-info-table tr:last-child th,
.gh-info-table tr:last-child td {
  border-bottom: none;
}

/* ══════════════════════════════════════════════
   6. PRODUTOS RELACIONADOS (Quem comprou...)
══════════════════════════════════════════════ */
.gh-related-wrapper {
  margin: 40px 0 60px;
}

.gh-related-title {
  font-size: 22px;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 24px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

.gh-related-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--brand-blue);
  border-radius: 2px;
}

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

.gh-related-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.gh-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 68, 204, 0.14);
}

.gh-related-img-link {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8f8f8;
}

.gh-related-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gh-related-card:hover .gh-related-img {
  transform: scale(1.05);
}

.gh-related-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e84040;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.gh-related-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.gh-related-product-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  min-height: 36px;
}

.gh-related-product-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s;
}

.gh-related-product-title a:hover {
  color: var(--brand-blue);
}

.gh-related-price {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: auto;
}

.gh-related-price-old .woocommerce-Price-amount {
  text-decoration: line-through;
  color: #aaa !important;
  font-size: 12px !important;
}

.gh-related-price-current .woocommerce-Price-amount {
  font-size: 16px !important;
  font-weight: 900 !important;
  color: var(--brand-blue) !important;
}

.gh-related-btn {
  display: block;
  background: var(--brand-blue);
  color: #fff !important;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 8px;
}

.gh-related-btn:hover {
  background: #003399;
}

/* ══════════════════════════════════════════════
   7. LIGHTBOX DE ZOOM (nativo JS)
══════════════════════════════════════════════ */
.gh-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 99999;
  display: none;
  /* Oculto por padrão — não bloqueia cliques */
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Lightbox visível apenas quando classe gh-lightbox-open é adicionada via JS */
.gh-lightbox.gh-lightbox-open {
  display: flex;
}

.gh-lightbox.gh-lightbox-visible {
  opacity: 1;
}

.gh-lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.gh-lightbox.gh-lightbox-visible .gh-lightbox-img {
  transform: scale(1);
}

.gh-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}

.gh-lightbox-close:hover {
  background: #fff;
  color: #000;
}

/* ══════════════════════════════════════════════
   RESPONSIVO — Single Product
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .gh-product-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gh-product-gallery-col {
    position: static;
  }

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

  .gh-tab-panel {
    padding: 24px 20px;
    max-width: 100%;
  }

  .gh-price-current .woocommerce-Price-amount {
    font-size: 26px !important;
  }
}

@media (max-width: 560px) {
  .gh-product-title {
    font-size: 20px !important;
  }

  .gh-tabs-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

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


/* Título do produto */
.product_title.entry-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.2;
  font-weight: 800;
}

/* Marca */
.product-brand-label {
  color: var(--brand-blue);
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: 600;
}

.product-brand-label a {
  color: #333;
  text-decoration: underline;
}

/* Estoque */
.stock.in-stock {
  margin-bottom: 10px !important;
  font-size: 15px !important;
  color: var(--brand-blue) !important;
  font-weight: 800 !important;
  display: block;
}

.stock.out-of-stock {
  color: #cc0000 !important;
  font-weight: 800 !important;
}

/* Badge Novidade */
.gh-badge-novidade {
  background-color: #0044cc;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}

.summary h1.product_title {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: var(--brand-blue) !important;
  line-height: 1.1 !important;
  margin-bottom: 15px !important;
  padding: 0 !important;
}

.product-brand-label {
  font-size: 16px;
  font-weight: 600;
  color: #666;
  margin-bottom: 20px;
}

.product-brand-label a {
  color: var(--brand-blue);
  text-decoration: underline;
  margin-left: 5px;
}

.summary p.price {
  font-size: 24px !important;
  font-weight: 900 !important;
  color: #222 !important;
  margin-bottom: 15px !important;
}

.summary p.price del {
  font-size: 16px;
  color: #999;
  margin-right: 8px;
  font-weight: normal;
}

.gh-shipping-banner {
  background-color: var(--brand-blue);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 68, 204, 0.2);
}

.shipping-calculator-box {
  background: #f9f9f9;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  margin-top: 25px;
}

.shipping-calculator-box h4 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--brand-blue);
}

.gh-link-entrega {
  color: var(--brand-blue);
  font-weight: 800;
  text-decoration: underline;
}

/* Botão de Pesquisar Verde Água (Mobile Fix) */
.search-wrapper button.search-submit {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 25px;
  max-width: 450px;
}

.woocommerce div.product form.cart div.quantity {
  margin: 0 !important;
}

.woocommerce div.product form.cart div.quantity input.qty {
  width: 65px !important;
  height: 48px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.woocommerce div.product form.cart button.single_add_to_cart_button {
  height: 48px !important;
  background-color: #0044cc !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  border: none !important;
  border-radius: 4px !important;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0 25px !important;
  flex-grow: 1;
}

.woocommerce div.product form.cart button.single_add_to_cart_button:hover {
  background-color: #003399 !important;
}

.local-delivery-info {
  margin-top: 20px;
  font-size: 14px;
  color: #666;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.gh-link-entrega {
  color: #0044cc;
  font-weight: 700;
  text-decoration: underline;
}

.product-after-summary {
  margin-top: 50px;
}

.custom-breadcrumb-wrapper {
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════
   CARTA POKÉMON INDIVIDUAL
══════════════════════════════════════════════ */
.pokemon-card-layout {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.pokemon-card-image {
  flex: 0 0 38%;
}

.pokemon-card-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pokemon-card-info {
  flex: 0 0 58%;
}

.pokemon-card-title {
  font-size: 32px;
  margin: 15px 0;
}

.pokemon-card-content {
  font-size: 16px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   FOOTER (geek-shop: background-wrap + white-box)
══════════════════════════════════════════════ */
.site-footer {
  margin-top: 50px;
  width: 100%;
  overflow: hidden;
}

.footer-background-wrap {
  background-color: #0033aa;
  background-image: url('../images/background-footer.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 0 15px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo img {
  max-height: 60px;
  max-width: 180px;
  margin-bottom: 15px;
}

.footer-info-white-box {
  background: #fff !important;
  border-radius: 15px !important;
  padding: 20px !important;
  width: 95% !important;
  max-width: 1200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

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

.footer-col h3 {
  font-size: 13px;
  color: var(--brand-blue);
  margin-bottom: 10px;
  font-weight: 800;
}

.footer-col p {
  font-size: 12px;
  color: #666;
  line-height: 1.3;
  margin-bottom: 8px;
}

.footer-col p a {
  color: #666;
  text-decoration: none;
}

.footer-col p a:hover {
  color: var(--brand-blue);
}

/* Remove bolinhas e recuos nas listas do footer */
.site-footer ul,
.footer-col ul,
.footer-info-white-box ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

.site-footer li,
.footer-col ul li {
  list-style: none !important;
  margin-bottom: 12px !important;
  display: block;
}

.footer-col ul li a {
  text-decoration: none;
  color: #666;
  font-size: 12px;
  line-height: 1.3;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--brand-blue);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.social-link {
  color: #fff !important;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s;
}

.social-link:hover {
  opacity: 0.8;
}

.social-instagram {
  background: #0044cc;
}

.social-whatsapp {
  background: #25d366;
}

.footer-bottom {
  background: var(--brand-blue);
  text-align: center;
  padding: 15px 0;
  color: #fff;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
  color: #fff;
}


/* ══════════════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .home-banners.banners-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .advantages-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .logo img {
    max-height: 55px;
  }

  .header-flex {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .search-wrapper {
    max-width: 100%;
    order: 3;
    flex: 0 0 100%;
  }

  .product-images,
  .summary.entry-summary {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .product-content-container {
    gap: 20px;
  }

  .woocommerce div.product form.cart {
    max-width: 100%;
  }

  .pokemon-card-layout {
    flex-direction: column;
    gap: 20px;
  }

  .pokemon-card-image,
  .pokemon-card-info {
    flex: 0 0 100%;
  }

  .pokemon-card-title {
    font-size: 24px;
  }
}

@media (max-width: 560px) {
  .brands-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .brands-list {
    gap: 12px;
  }

  .advantage-card {
    min-width: 100%;
  }

  .main-navigation ul li a {
    padding: 12px 14px;
    font-size: 12px;
  }
}

/* ══════════════════════════════════════════════
   WOOCOMMERCE GRID FIX (4 colunas)
   Garante que o layout da loja siga a imagem
══════════════════════════════════════════════ */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin: 30px 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

@media (max-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  background: #fff !important;
  border-radius: 12px !important;
  padding: 15px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
  transition: transform 0.2s ease !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.woocommerce ul.products li.product img {
  border-radius: 8px !important;
  margin-bottom: 15px !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--brand-blue) !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.3 !important;
  min-height: 40px;
}

.woocommerce ul.products li.product .price {
  font-size: 18px !important;
  font-weight: 900 !important;
  color: #333 !important;
  display: block !important;
  margin-bottom: 15px !important;
}

.woocommerce ul.products li.product .button {
  background: var(--brand-blue) !important;
  color: #fff !important;
  padding: 12px 20px !important;
  border-radius: 6px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  display: block !important;
  width: 100% !important;
  margin: auto 0 0 0 !important;
  border: none !important;
}

.woocommerce ul.products li.product .button:hover {
  background: #003399 !important;
}

/* Botão de Pesquisar Verde Água */
.search-wrapper button[type="submit"],
.woocommerce-product-search button[type="submit"],
.search-wrapper button.search-submit {
  background: var(--accent) !important;
  color: var(--brand-blue) !important;
  font-weight: 900 !important;
}