/* ================================================================
   TemaPneus — OpenCart 3.x
   Referência visual: PneuStore.com.br
   Cor principal: Roxo #6b21a8 / #E65A39
   Fonte: Nunito
   v1.5
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

/* BASE */
* { box-sizing: border-box; }
body {
  font-family: 'Nunito', sans-serif;
  background: #f5f5f5;
  color: #333;
  margin: 0;
  padding: 0;
}
a { color: #E65A39; text-decoration: none; }
a:hover, a:focus { color: #5b21b6; text-decoration: none; }
img { max-width: 100%; }

/* ── TOPBAR ────────────────────────────────────────────────────── */
.pn-topbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  font-size: 12px;
  padding: 6px 0;
}
.pn-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.pn-topbar-link {
  color: #E65A39;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.pn-topbar-link:hover { color: #5b21b6; }
.pn-topbar-sep { color: #d1d5db; }

/* ── HEADER ────────────────────────────────────────────────────── */
.pn-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 0;
}
.pn-header-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pn-logo-col { flex: 0 0 auto; }
.pn-logo img { max-height: 48px; }
.pn-logo-text { font-size: 26px; font-weight: 900; color: #E65A39; }
.pn-search-col { flex: 1 1 auto; display: flex; justify-content: center; }
.pn-search-col #search { width: 500px; }

.pn-actions-col { flex: 0 0 auto; display: flex; gap: 16px; align-items: center; }

/* Search — borda cinza fina, ícone lupa roxo */
.pn-search .input-group {
  border: 1px solid #d1d5db;
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
}
.pn-search-input {
  border: none;
  box-shadow: none;
  height: 44px;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  color: #374151;
  padding-left: 20px;
  border-radius: 50px 0 0 50px;
  background: transparent;
}
.pn-search-input:focus { outline: none; box-shadow: none; }
.pn-search-input::placeholder { color: #9ca3af; }
.pn-search-btn {
  background: transparent;
  color: #E65A39;
  border: none;
  height: 44px;
  width: 48px;
  font-size: 16px;
  border-radius: 0 50px 50px 0;
  padding-right: 16px;
}
.pn-search-btn:hover { color: #5b21b6; }

/* Account — sem borda, só ícone + texto */
.pn-account-dropdown { position: relative; }
.pn-account-link {
  display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600;
  color: #374151; background: none; border: none; padding: 0;
  cursor: pointer; font-family: 'Nunito', sans-serif;
  transition: color 0.2s;
}
.pn-account-link:hover { color: #E65A39; }
.pn-account-link svg { color: #374151; }
.pn-account-panel {
  position: absolute; top: calc(100% + 12px); right: 0;
  width: 320px; max-width: calc(100vw - 2rem); background: #fff;
  border: 1px solid #e5e7eb; border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12); display: none; z-index: 1000;
}
.pn-account-panel.active { display: block; }
.pn-auth-tabs { display: flex; border-bottom: 2px solid #e5e7eb; }
.pn-auth-tab {
  flex: 1; padding: 12px; background: none; border: none;
  font-size: 13px; font-weight: 700; color: #6b7280; cursor: pointer;
  font-family: 'Nunito', sans-serif; transition: color 0.2s;
}
.pn-auth-tab.active { color: #E65A39; border-bottom: 2px solid #E65A39; margin-bottom: -2px; }
.pn-auth-content { padding: 16px; }
.pn-auth-form { display: none; }
.pn-auth-form.active { display: block; }
.pn-auth-form .form-group { margin-bottom: 12px; }
.pn-auth-form label { font-size: 11px; font-weight: 700; color: #374151; display: block; margin-bottom: 4px; }
.pn-auth-form .form-control { height: 40px; font-size: 13px; border-radius: 8px; border-color: #d1d5db; font-family: 'Nunito', sans-serif; }
.pn-auth-link { text-align: center; font-size: 11px; color: #9ca3af; margin: 10px 0 0; }
.pn-auth-link a { color: #E65A39; }

/* Cart — círculo roxo com badge roxo */
.pn-cart-widget { position: relative; }
.pn-cart-btn {
  background: #E65A39;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
}
.pn-cart-btn:hover, .pn-cart-btn:focus, .open > .pn-cart-btn {
  background: #5b21b6 !important; color: #fff !important;
}
.pn-cart-count {
  position: absolute; top: -6px; right: -6px;
  background: #E65A39; color: #fff; border-radius: 50%;
  border: 2px solid #fff;
  width: 20px; height: 20px; font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.pn-cart-dropdown { min-width: 320px; padding: 10px; border-radius: 8px; }
.pn-btn-success { background: #059669; color: #fff; border-color: #059669; }
.pn-btn-success:hover { background: #047857; color: #fff; }

/* ── NAVEGAÇÃO ROXA ────────────────────────────────────────────── */
.pn-nav {
  background: #7B24C7;
  padding: 0;
  position: relative;
  z-index: 200;
}
.pn-nav-inner { display: flex; align-items: center; }
.pn-menu-toggle {
  display: none;
  background: none; border: none; color: #fff;
  font-size: 14px; font-weight: 700; padding: 14px 0;
  cursor: pointer; font-family: 'Nunito', sans-serif;
}
.pn-menu {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap;
}
.pn-menu > li { position: relative; }
.pn-menu > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 14px 18px;
  color: #fff; font-size: 13px; font-weight: 700;
  text-transform: uppercase; white-space: nowrap;
  transition: background 0.2s;
}
.pn-menu > li > a:hover,
.pn-menu > li > a:focus {
  background: rgba(255,255,255,0.15); color: #fff;
}

/* Seta SVG com animação de rotação */
.pn-caret {
  display: inline-block;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.pn-has-dropdown:hover > a .pn-caret {
  transform: rotate(180deg);
}

/* Megamenu */
.pn-has-dropdown { position: relative; }
.pn-megamenu {
  display: none;
  position: absolute; top: 100%; left: 0;
  min-width: 220px; background: #fff;
  border-top: 3px solid #E65A39;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  z-index: 500;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.pn-has-dropdown:hover .pn-megamenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.pn-megamenu-inner {
  display: flex;
  gap: 0;
  padding: 16px;
}
.pn-megamenu-col { min-width: 180px; }
.pn-megamenu-col ul { list-style: none; padding: 0; margin: 0; }
.pn-megamenu-col ul li a {
  display: block; padding: 7px 10px; font-size: 13px; color: #374151;
  border-radius: 4px; transition: background 0.15s, color 0.15s;
}
.pn-megamenu-col ul li a:hover { background: #f5f3ff; color: #E65A39; }

/* ── BANNER HOME (fo-banner-home / bloco HTML) ─────────────────── */
.fo-banner-home {
    width: 100%;
    overflow: hidden;
}

.fo-banner-home img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .fo-banner-home img {
        min-height: 250px;
        object-fit: cover;
        object-position: center;
    }
}

/* ── BANNER / SLIDESHOW ────────────────────────────────────────── */
.pn-slideshow {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.pn-slideshow .carousel-inner {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.pn-slideshow .carousel-inner .item {
  line-height: 0;
}
.pn-slideshow .carousel-inner img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}
.pn-carousel-control {
  background: rgba(124,58,237,0.6) !important;
  width: 40px; border-radius: 50%; top: 50%; transform: translateY(-50%);
  height: 40px; display: flex; align-items: center; justify-content: center;
  margin: 0 10px;
}
.pn-carousel-control:hover { background: rgba(91,33,182,0.8) !important; }

/* ── SEÇÃO DE MARCAS (carrossel manufacturer) ──────────────────── */
.pn-brands-section {
  background: #fff;
  padding: 24px 0;
  border-bottom: 1px solid #e5e7eb;
}
.pn-brands-title {
  font-size: 18px;
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 16px;
}
.pn-brands-carousel {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.pn-brands-track-wrap {
  flex: 1;
  overflow: hidden;
}
.pn-brands-track {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.4s ease;
}
.pn-brand-item {
  flex: 0 0 140px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pn-brand-item:hover { border-color: #E65A39; box-shadow: 0 2px 12px rgba(124,58,237,.1); }
.pn-brand-item img { max-height: 50px; max-width: 120px; object-fit: contain; filter: grayscale(100%); opacity: 0.7; transition: all 0.2s; }
.pn-brand-item:hover img { filter: grayscale(0%); opacity: 1; }
.pn-brand-name-fallback { font-size: 12px; font-weight: 700; color: #E65A39; text-align: center; }
.pn-brands-arrow {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  background: #E65A39; border: none; border-radius: 50%;
  color: #fff; font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.pn-brands-arrow:hover { background: #5b21b6; }

/* ── PRODUCT CARDS ─────────────────────────────────────────────── */
.pn-products-section { padding: 30px 0; background: #f0f0f0; }
.pn-section-title {
  font-size: 20px; font-weight: 900; color: #1f2937;
  margin: 0 0 20px; text-align: center;
}
.pn-products-row { margin: 0 -8px; }
.pn-products-row::after { content: ""; display: table; clear: both; }
.pn-products-row > [class*="col-"] { padding: 0 8px; float: left; box-sizing: border-box; }

/* Card */
.pn-product-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  transition: box-shadow .25s, transform .25s;
}
.pn-product-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.13);
  transform: translateY(-3px);
}

/* Imagem + overlay */
.pn-product-img-wrap {
  position: relative;
  background: #fff;
  aspect-ratio: 1;
  overflow: hidden;
}
.pn-product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .3s;
}
.pn-product-card:hover .pn-product-img-wrap img {
  transform: scale(1.04);
}

/* Botão Comprar que aparece no hover */
.pn-product-hover-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.pn-product-card:hover .pn-product-hover-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.pn-btn-comprar-hover {
  width: 100%;
  background: #E65A39;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  padding: 11px 12px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(230,90,57,.4);
  transition: background .2s;
}
.pn-btn-comprar-hover:hover { background: #E65A39; }

/* Body */
.pn-product-body { padding: 12px 14px 14px; }

/* Brand logo/tag */
.pn-product-brand-logo {
  margin-bottom: 8px;
  min-height: 28px;
  display: flex;
  align-items: center;
}
.pn-manufacturer-img {
  max-height: 28px;
  max-width: 90px;
  object-fit: contain;
  display: block;
}
.pn-product-brand-tag {
  display: inline-block;
  background: #e53935;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Nome */
.pn-product-name {
  font-size: 13px; font-weight: 600;
  margin: 0 0 10px; line-height: 1.4;
  min-height: 55px;
}
.pn-product-name a { color: #1f2937; }
.pn-product-name a:hover { color: #E65A39; }

/* Preço à vista */
.pn-product-price-vista {
  font-size: 20px; font-weight: 900;
  color: #E65A39; margin: 0 0 4px;
}
.pn-avista { font-size: 13px; font-weight: 600; color: #555; }

/* Parcelas */
.pn-product-installments {
  font-size: 12px; color: #555; margin: 0;
}
.pn-product-installments strong { color: #1f2937; }

/* Botões gerais */
.pn-btn-primary {
  background: #E65A39; color: #fff; border: none;
  border-radius: 8px; font-weight: 800; font-size: 13px;
  padding: 10px 12px; text-transform: uppercase;
  font-family: 'Nunito', sans-serif;
}
.pn-btn-primary:hover, .pn-btn-primary:focus, .pn-btn-primary:active {
  background: #5b21b6 !important; color: #fff !important;
}

/* ── FOOTER ────────────────────────────────────────────────────── */
.pn-footer { background: #1f2937; color: #9ca3af; }
.pn-footer-main { padding: 40px 0 30px; }
.pn-footer h4 {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  color: #fff; margin-bottom: 16px; letter-spacing: 0.5px;
}
.pn-footer-list { padding: 0; }
.pn-footer-list li { margin-bottom: 8px; font-size: 12px; }
.pn-footer-list a { color: #9ca3af; }
.pn-footer-list a:hover { color: #fff; }
.pn-payment-icons { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.pn-payment-icons img { width: 40px; height: 25px; object-fit: contain; background: #374151; border-radius: 4px; padding: 2px; }
.pn-social-footer { display: flex; gap: 8px; }
.pn-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; background: #E65A39;
  border-radius: 50%; color: #fff; font-size: 16px;
}
.pn-social-icon:hover { background: #5b21b6; color: #fff; }
.pn-footer-bottom { background: #111827; padding: 14px 0; text-align: center; }
.pn-footer-bottom p { font-size: 11px; color: #6b7280; margin: 0; }

/* ── BREADCRUMB ────────────────────────────────────────────────── */
.pn-breadcrumb {
  font-size: 12px; color: #9ca3af; padding: 12px 0;
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}
.pn-breadcrumb a { color: #9ca3af; }
.pn-breadcrumb a:hover { color: #E65A39; }

/* ── PÁGINA DE CATEGORIA ───────────────────────────────────────── */
.pn-category-page { background: #f5f5f5; min-height: 100vh; padding-bottom: 40px; }
.pn-cat-layout { display: flex; gap: 24px; align-items: flex-start; }

/* Sidebar */
.pn-cat-sidebar {
  width: 210px; flex-shrink: 0;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 8px;
  padding: 8px; position: sticky; top: 20px;
}
.pn-filter-group { border-bottom: 1px solid #e5e7eb; }
.pn-filter-group:last-child { border-bottom: none; }
.pn-filter-title {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 8px; font-size: 13px; font-weight: 800; color: #E65A39;
  cursor: pointer; user-select: none;
}
.pn-filter-caret { transition: transform 0.2s; flex-shrink: 0; }
.pn-filter-body { padding: 4px 8px 12px; }
.pn-filter-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: #374151; margin-bottom: 8px; cursor: pointer;
}
.pn-filter-check input { accent-color: #E65A39; }

/* Main content */
.pn-cat-main { flex: 1; min-width: 0; }
.pn-cat-header { margin-bottom: 16px; }
.pn-cat-title { font-size: 24px; font-weight: 900; color: #1f2937; margin: 0 0 8px; }
.pn-cat-topbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.pn-cat-count { font-size: 13px; color: #6b7280; margin: 0; }
.pn-cat-sort { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #6b7280; }
.pn-cat-sort-select {
  border: 1px solid #d1d5db; border-radius: 4px;
  padding: 4px 8px; font-size: 13px; font-family: 'Nunito', sans-serif;
  background: #fff; color: #374151;
}

/* Product card badge */
.pn-cat-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 10px; font-weight: 900; padding: 2px 8px;
  border-radius: 3px; text-transform: uppercase; letter-spacing: 0.3px;
}
.pn-cat-badge-desconto { background: #00bcd4; color: #fff; }
.pn-cat-badge-frete { background: #059669; color: #fff; }

/* Stars */
.pn-cat-stars { display: flex; align-items: center; gap: 2px; margin-bottom: 6px; }
.pn-cat-reviews { font-size: 11px; color: #9ca3af; margin-left: 4px; }

/* Empty / Pagination */
.pn-cat-empty { text-align: center; padding: 60px 20px; background: #fff; border-radius: 8px; }
.pn-pagination { margin-top: 24px; }
.pn-pagination ul { display: flex; gap: 4px; flex-wrap: wrap; list-style: none; padding: 0; }
.pn-pagination ul li a, .pn-pagination ul li span {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid #d1d5db; border-radius: 4px;
  font-size: 13px; font-weight: 600; color: #374151; background: #fff;
  text-decoration: none; transition: all 0.15s;
}
.pn-pagination ul li.active span,
.pn-pagination ul li a:hover { background: #E65A39; color: #fff; border-color: #E65A39; }

/* ── PÁGINA DE PRODUTO ─────────────────────────────────────────── */
.pn-product-page { background: #f5f5f5; min-height: 100vh; padding-bottom: 40px; }

/* Layout principal: galeria + info lado a lado */
.pn-pp-wrap {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

/* Galeria (coluna esquerda) */
.pn-pp-gallery {
  flex: 0 0 auto;
  width: 650px;
}

/* Imagem principal com zoom */
.pn-pp-main-img-wrap {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  overflow: hidden;
  cursor: zoom-in;
}
.pn-pp-zoom-wrap:hover .pn-pp-main-img { transform: scale(1.06); }
.pn-pp-main-img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  padding: 12px;
  display: block;
  transition: transform 0.3s ease;
}
.pn-pp-zoom-icon {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(255,255,255,0.85); border-radius: 50%; padding: 6px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s; color: #374151;
}
.pn-pp-zoom-wrap:hover .pn-pp-zoom-icon { opacity: 1; }

/* Info (coluna direita) */
.pn-pp-info { flex: 1; min-width: 0; }

/* Marca */
.pn-pp-brand-badge { margin-bottom: 10px; }
.pn-pp-brand-img { max-height: 32px; max-width: 110px; object-fit: contain; display: block; }
.pn-pp-brand-tag {
  display: inline-block; background: #e53935; color: #fff;
  font-size: 11px; font-weight: 900; padding: 3px 10px;
  border-radius: 3px; text-transform: uppercase; letter-spacing: 0.3px;
}

/* Título */
.pn-pp-title { font-size: 22px; font-weight: 900; color: #1f2937; margin: 0 0 6px; line-height: 1.3; }

/* Meta: ID + Stars */
.pn-pp-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.pn-pp-sku { font-size: 12px; color: #9ca3af; }
.pn-pp-stars { display: flex; align-items: center; gap: 2px; }
.pn-pp-reviews-link { font-size: 12px; color: #E65A39; margin-left: 4px; text-decoration: underline; }

/* Action buttons */
.pn-pp-action-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.pn-pp-action-btn {
  display: flex; align-items: center; gap: 6px;
  border: 1px solid #d1d5db; border-radius: 50px;
  padding: 7px 16px; font-size: 12px; font-weight: 600;
  color: #374151; background: #fff; cursor: pointer;
  font-family: 'Nunito', sans-serif; transition: border-color 0.15s, color 0.15s;
}
.pn-pp-action-btn:hover { border-color: #E65A39; color: #E65A39; }

/* Preço */
.pn-pp-price-block { margin-bottom: 20px; }
.pn-pp-price-main {
  font-size: 38px; font-weight: 900; color: #E65A39;
  display: flex; align-items: center; gap: 10px; margin-bottom: 4px;
}
.pn-pp-pix-badge {
  font-size: 13px; font-weight: 700; background: #f5f3ff; color: #E65A39;
  padding: 3px 10px; border-radius: 50px; border: 1px solid #ddd6fe;
  white-space: nowrap;
}
.pn-pp-price-parcel { font-size: 12px; color: #6b7280; }
.pn-pp-price-parcel a { color: #E65A39; text-decoration: underline; }
.pn-pp-avista { font-size: 14px; font-weight: 600; color: #6b7280; }

/* Buy row */
.pn-pp-buy-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.pn-pp-qty {
  display: flex; align-items: center;
  border: 1px solid #d1d5db; border-radius: 4px; overflow: hidden;
  flex-shrink: 0;
}
.pn-pp-qty button {
  width: 38px; height: 46px; background: #fff; border: none;
  font-size: 20px; font-weight: 600; color: #374151;
  cursor: pointer; font-family: 'Nunito', sans-serif; transition: background 0.15s;
}
.pn-pp-qty button:first-child { border-right: 1px solid #d1d5db; }
.pn-pp-qty button:last-child { border-left: 1px solid #d1d5db; }
.pn-pp-qty button:hover { background: #f9fafb; }
.pn-pp-qty-input {
  width: 44px; height: 46px; text-align: center; border: none;
  font-size: 15px; font-weight: 700; font-family: 'Nunito', sans-serif;
}
.pn-pp-comprar-btn {
  flex: 1; height: 46px;
  background: #E65A39; color: #fff; border: none; border-radius: 4px;
  font-size: 16px; font-weight: 900; cursor: pointer; font-family: 'Nunito', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.2s;
}
.pn-pp-comprar-btn:hover { background: #621AA2; }

/* Nota */
.pn-pp-note {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 11px; color: #9ca3af; margin-bottom: 16px; line-height: 1.5;
}

/* Descrição / Tabs abaixo do card */
.pn-pp-tabs-section { background: #e5e7eb; border: 1px solid #e5e7eb; border-radius: 8px; margin-bottom: 24px; }
.pn-pp-tabs { display: flex; border-bottom: 2px solid #e5e7eb; }
.pn-pp-tab {
  padding: 14px 24px; font-size: 14px; font-weight: 700; cursor: pointer;
  color: #6b7280; border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s; background: none; border-top: none; border-left: none; border-right: none;
  font-family: 'Nunito', sans-serif;
}
.pn-pp-tab.active { color: #E65A39; border-bottom-color: #E65A39; }
.pn-pp-tab:hover { color: #E65A39; }
.pn-pp-tab-content { padding: 24px; }
.pn-pp-tab-panel { display: none; }
.pn-pp-tab-panel.active { display: block; }
.pn-pp-tab-panel h2 { font-size: 18px; font-weight: 900; color: #1f2937; margin: 0 0 16px; }
.pn-pp-specs-table { width: 100%; border-collapse: collapse; }
.pn-pp-specs-table tr { border-bottom: 1px solid #f3f4f6; }
.pn-pp-specs-table tr:nth-child(odd) { background: #f9fafb; }
.pn-pp-specs-table td { padding: 10px 16px; font-size: 13px; }
.pn-pp-specs-table td:first-child { color: #6b7280; width: 200px; }
.pn-pp-specs-table td:last-child { color: #1f2937; font-weight: 600; }

/* Related */
.pn-pp-related { margin-top: 8px; }
.pn-pp-related h2 { font-size: 20px; font-weight: 900; color: #1f2937; margin: 0 0 16px; }

/* ── RESPONSIVO ────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .pn-brand-item { flex: 0 0 110px; }
}
@media (max-width: 768px) {
  .pn-topbar { display: none; }
  .pn-header-row { flex-wrap: wrap; }
  .pn-search-col { order: 3; flex: 1 1 80%; margin-top: 8px; max-width: 350px; }
  .pn-menu-toggle { display: block; }
  .pn-menu { flex-direction: column; display: none; position: absolute; top: 100%; left: 0; right: 0; background: #5b21b6; z-index: 500; }
  .pn-menu.pn-menu-open { display: flex; }
  .pn-menu > li > a { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .pn-has-dropdown:hover .pn-dropdown { display: none; }
  .pn-dropdown { position: static; border-top: none; box-shadow: none; border-radius: 0; }
  .pn-account-panel {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 300px;
    }
  .pn-cat-layout { flex-direction: column; }
  .pn-cat-sidebar { width: 100%; position: static; }
  .pn-pp-wrap { flex-direction: column; }
  .pn-pp-gallery { width: 100%; }
  .pn-pp-main-img-wrap { min-height: 260px; }
}
@media (max-width: 480px) {
  .pn-product-price { font-size: 18px; }
  .pn-brands-title { font-size: 16px; }
  .pn-pp-price-main { font-size: 28px; }
}


/* =========================
   NEWSLETTER SUPERIOR
========================= */
.fo-newsletter-bar {
  background: #621AA2;
  padding: 34px 0 38px;
  text-align: center;
}

.fo-newsletter-inner h3 {
  margin: 0 0 22px;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 800;
  color: #fff;
}

.fo-newsletter-form {
  max-width: 860px;
  margin: 0 auto 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.fo-newsletter-form input {
  height: 42px;
  border: 0;
  border-radius: 4px;
  background: #f1f1f1;
  color: #666;
  padding: 0 16px;
  font-size: 16px;
  width: 335px;
  max-width: 100%;
  box-shadow: none;
}

.fo-newsletter-form button {
  height: 42px;
  border: 0;
  border-radius: 4px;
  background: #E65A39;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 0 34px;
  transition: .2s ease;
}

.fo-newsletter-form button:hover,
.fo-newsletter-form button:focus {
  background: #fff;
  color: #E65A39;
}

.fo-newsletter-inner p {
  margin: 0;
  font-size: 14px;
  color: #fff;
}

/* =========================
   FAIXA DE BENEFÍCIOS
========================= */
.fo-trust-strip {
  background: #ffffff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 18px 0;
}

.fo-trust-row {
  display: flex;
  flex-wrap: wrap;
}

.fo-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 56px;
}

.fo-trust-item i {
  font-size: 24px;
  color: #5b00b5;
  width: 28px;
  text-align: center;
  margin-top: 3px;
}

.fo-trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #252525;
  line-height: 1.2;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.fo-trust-item span {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: #555;
}

/* =========================
   RODAPÉ PRINCIPAL
========================= */
.fo-footer {
  background: #E65A39;
  color: #fff;
  position: relative;
}

.fo-footer-main {
  padding: 52px 0 42px;
  background: linear-gradient(180deg, #E65A39 0%, #E65A39 100%);
}

.fo-footer-row > div {
  margin-bottom: 25px;
}

.fo-footer h4 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.fo-footer-logo {
  margin-bottom: 25px;
}

.fo-footer-logo img {
  max-width: 220px;
  max-height: 60px;
}

.fo-footer-logo-text {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.fo-footer-list {
  margin: 0;
  padding: 0;
}

.fo-footer-list li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,.95);
}

.fo-footer-list li:last-child {
  margin-bottom: 0;
}

.fo-footer-list a {
  color: rgba(255,255,255,.95);
  text-decoration: none;
  transition: .2s ease;
}

.fo-footer-list a:hover,
.fo-footer-list a:focus {
  color: #ffffff;
  text-decoration: underline;
}

.fo-footer-company li {
  color: rgba(255,255,255,.92);
}

.fo-footer-phones {
  margin-bottom: 18px;
}

.fo-phone-main {
  font-size: 23px;
  line-height: 1.15;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}

.fo-phone-note {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
}

.fo-footer-contact-extra p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.95);
}

.fo-footer-contact-extra a {
  color: #fff;
  text-decoration: none;
}

.fo-footer-contact-extra a:hover {
  text-decoration: underline;
}

/* =========================
   RODAPÉ INFERIOR
========================= */
.fo-footer-bottom {
  background: #E65A39;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 16px 0;
  text-align: center;
}

.fo-footer-bottom p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #fff;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 991px) {
  .fo-newsletter-inner h3 {
    font-size: 22px;
  }

  .fo-newsletter-form {
    max-width: 100%;
  }

  .fo-newsletter-form input {
    width: 100%;
  }

  .fo-newsletter-form button {
    width: 100%;
  }

  .fo-footer-main {
    padding: 40px 0 30px;
  }

  .fo-phone-main {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .fo-newsletter-bar {
    padding: 28px 0 30px;
  }

  .fo-newsletter-inner h3 {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .fo-trust-item {
    margin-bottom: 16px;
  }

  .fo-footer h4 {
    margin-bottom: 14px;
    font-size: 17px;
  }

  .fo-footer-logo {
    margin-bottom: 18px;
  }

  .fo-footer-list li,
  .fo-footer-contact-extra p {
    font-size: 14px;
  }

  .fo-footer-bottom {
    padding: 14px 0;
  }
}

/* GRID mais compacto */
.pn-pp-meta-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin: 10px 0;
}

/* CARD compacto */
.pn-meta-card {
  display: flex;
  align-items: center;
  gap: 8px;

  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;

  padding: 6px 8px;

  transition: 0.15s ease;
}

/* Hover leve */
.pn-meta-card:hover {
  background: #fff;
  border-color: #d1d5db;
}

/* ÍCONE menor */
.pn-meta-card i {
  font-size: 13px;
  color: #2563eb;
  min-width: 16px;
  text-align: center;
}

/* TEXTO compacto */
.pn-meta-card span {
  display: block;
  font-size: 10px;
  color: #6b7280;
  line-height: 1;
}

.pn-meta-card strong {
  display: block;
  font-size: 12px;
  color: #111827;
  font-weight: 600;
  margin-top: 1px;
}

/* MOBILE */
@media (max-width: 480px) {
  .pn-pp-meta-cards {
    grid-template-columns: 1fr;
  }
}

.pn-meta-card strong {
  letter-spacing: 0.3px;
}

.pn-pp-main-img-wrap{
  height: 520px;
}

.pn-pp-main-img{
  max-width:100%;
  max-height:100%;
}
