/** Shopify CDN: Minification failed

Line 1118:8 Expected identifier but found whitespace
Line 1118:9 Unexpected "100%"

**/
/* ============================================
   SALLON STORE V2 - Tema Minimalista Elegante
   Paleta: Laranja #E8650A | Branco #FFFFFF | Creme #FAF8F5
   Tipografia: Playfair Display + DM Sans
   ============================================ */

:root {
  --btn-buy: #E8650A;
  --btn-hero: #C4520A;

  --black: #1C1C1C;
  --gray-mid: #7A7A7A;
  --gray-light: #E8E8E8;
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --radius: 4px;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.14);
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--black); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }

/* ============ HEADER V2 ============ */
.header-v2 {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 200;
}

.header-top-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 8px 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.header-top-bar span { color: var(--orange); font-weight: 600; }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  gap: 16px;
}

.header-logo-v2 img {
  height: 52px;
  width: auto;
}

.header-nav-v2 {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  flex: 1;
  justify-content: center;
}

.nav-link-v2 {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 8px;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav-link-v2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav-link-v2:hover { color: var(--orange); }
.nav-link-v2:hover::after { width: 100%; }

.header-actions-v2 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-form-v2 {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gray-light);
  border-radius: 30px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.search-form-v2:focus-within { border-color: var(--orange); }

.search-form-v2 input {
  border: none;
  outline: none;
  padding: 9px 18px;
  font-size: 0.88rem;
  font-family: var(--font-sans);
  width: 220px;
  background: transparent;
  color: var(--black);
}

.search-form-v2 button {
  padding: 9px 14px;
  color: var(--gray-mid);
  transition: color var(--transition);
}

.search-form-v2 button:hover { color: var(--orange); }

/* ============ HERO V2 — SPLIT LAYOUT ============ */
.hero-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}

.hero-v2-content {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 80px;
}

.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-v2-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 20px;
}

.hero-v2-title em {
  font-style: italic;
  color: var(--orange);
}

.hero-v2-subtitle {
  font-size: 1.05rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
}

.hero-v2-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-v2 {
  background: var(--btn-hero) !important;
  color: #fff !important;
  background: var(--orange);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary-v2:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,101,10,0.35);
}

.btn-outline-v2 {
  border: 2px solid var(--black);
  color: var(--black);
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}

.btn-outline-v2:hover {
  background: var(--black);
  color: var(--white);
}

.hero-v2-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-light);
}

.hero-stat-v2 .number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.hero-stat-v2 .label {
  font-size: 0.78rem;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-v2-image {
  position: relative;
  overflow: hidden;
}

.hero-v2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-v2-image:hover img { transform: scale(1.04); }

.hero-v2-image-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-v2-image-badge .icon { font-size: 2rem; }

.hero-v2-image-badge .text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
}

.hero-v2-image-badge .text span {
  font-size: 0.78rem;
  color: var(--gray-mid);
}

/* ============ SEÇÃO TÍTULO ============ */
.section-header-v2 {
  text-align: center;
  margin-bottom: 52px;
}

.section-label-v2 {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title-v2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}

.section-title-v2 em { font-style: italic; color: var(--orange); }

.section-desc-v2 {
  font-size: 1rem;
  color: var(--gray-mid);
  margin-top: 12px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ CATEGORIAS V2 — HORIZONTAL SCROLL ============ */
.categories-v2 {
  padding: 80px 0;
  background: var(--white);
}

.categories-v2 .container { max-width: 1320px; margin: 0 auto; padding: 0 60px; }

.categories-scroll-v2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.category-card-v2 {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}

.category-card-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card-v2:hover img { transform: scale(1.08); }

.category-card-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px;
  transition: background var(--transition);
}

.category-card-v2:hover .category-card-v2-overlay {
  background: linear-gradient(to top, rgba(232,101,10,0.82) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}

.category-card-v2-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.category-card-v2-link {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}

.category-card-v2:hover .category-card-v2-link { color: var(--white); }

/* ============ PRODUTOS EM DESTAQUE V2 ============ */
.featured-v2 {
  padding: 80px 0;
  background: var(--cream);
}

.featured-v2 .container { max-width: 1320px; margin: 0 auto; padding: 0 60px; }

.products-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card-v2 {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-card-v2:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-card-v2-image {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--gray-light);
}

.product-card-v2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card-v2:hover .product-card-v2-image img { transform: scale(1.06); }

.product-badge-v2 {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.product-card-v2-info {
  padding: 18px 20px 22px;
}

.product-card-v2-category {
  font-size: 0.72rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-card-v2-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-card-v2-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.price-current-v2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--orange);
}

.price-old-v2 {
  font-size: 0.85rem;
  color: var(--gray-mid);
  text-decoration: line-through;
}

.btn-buy-v2 {
  width: 100%;
  background: var(--black);
  color: var(--white);
  padding: 11px 0;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--transition);
}

.btn-buy-v2:hover { background: var(--orange); }

/* ============ BANNER PROMO V2 ============ */
.promo-v2 {
  background: var(--black);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.promo-v2::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.07;
}

.promo-v2 .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.promo-v2-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.promo-v2-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.promo-v2-title em { font-style: italic; color: var(--orange); }

.promo-v2-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.promo-v2-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.promo-v2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ TRUST BAR V2 ============ */
.trust-v2 {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.trust-v2 .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item-v2 {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-icon-v2 {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-item-v2 strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.trust-item-v2 span {
  font-size: 0.82rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

/* ============ FOOTER V2 ============ */
.footer-v2 {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-v2-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand-v2 img {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand-v2 p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social-v2 {
  display: flex;
  gap: 12px;
}

.social-btn-v2 {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.social-btn-v2:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.footer-col-v2 h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col-v2 ul { list-style: none; }

.footer-col-v2 ul li {
  margin-bottom: 10px;
}

.footer-col-v2 ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

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

.footer-bottom-v2 {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 60px;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-v2 p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

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

.payment-badge-v2 {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

/* ============ WHATSAPP BTN ============ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}

/* ============ RESPONSIVO ============ */
@media (max-width: 1100px) {
  .header-main { padding: 16px 32px; }
  .hero-v2-content { padding: 60px 48px; }
  .categories-scroll-v2 { grid-template-columns: repeat(3, 1fr); }
  .products-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .categories-v2 .container,
  .featured-v2 .container,
  .promo-v2 .container { padding: 0 32px; }
  .trust-v2 .container { padding: 0 32px; }
  .footer-v2-main { padding: 0 32px 48px; grid-template-columns: 1fr 1fr; }
  .footer-bottom-v2 { padding: 20px 32px; }
}

@media (max-width: 768px) {
  .hero-v2 { grid-template-columns: 1fr; }
  .hero-v2-image { min-height: 320px; }
  .hero-v2-content { padding: 48px 24px; }
  .hero-v2-title { font-size: 2.2rem; }
  .header-main { padding: 14px 20px; }
  .header-nav-v2 { display: none; }
  .search-form-v2 input { width: 160px; }
  .categories-scroll-v2 { grid-template-columns: repeat(2, 1fr); }
  .products-grid-v2 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .promo-v2 .container { grid-template-columns: 1fr; gap: 32px; }
  .trust-v2 .container { grid-template-columns: repeat(2, 1fr); }
  .footer-v2-main { grid-template-columns: 1fr; padding: 0 24px 40px; }
  .footer-bottom-v2 { flex-direction: column; gap: 12px; padding: 20px 24px; text-align: center; }
  .categories-v2 .container,
  .featured-v2 .container,
  .promo-v2 .container { padding: 0 20px; }
  .trust-v2 .container { padding: 0 20px; }
}

/* ============================================================
   TEMPLATES ADICIONAIS V2
   Página de Produto, Coleção, Carrinho, Busca, Blog, Conta
   ============================================================ */

/* ---- Utilitários de página ---- */
.container { max-width: 1320px; margin: 0 auto; padding: 0 60px; }

/* ============ PÁGINA DE PRODUTO ============ */
.product-page-v2 {
  padding: 40px 0 80px;
  background: var(--white);
}

.product-page-v2__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Breadcrumb */
.product-breadcrumb-v2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.product-breadcrumb-v2 a {
  color: var(--gray-mid);
  transition: color var(--transition);
}

.product-breadcrumb-v2 a:hover { color: var(--orange); }

.product-breadcrumb-v2__sep { color: var(--gray-light); }

/* Grid produto */
.product-page-v2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Galeria */
.product-gallery-v2__main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 1 / 1;
}

.product-gallery-v2__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-gallery-v2__main:hover .product-gallery-v2__main-img {
  transform: scale(1.04);
}

.product-gallery-v2__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: var(--cream);
}

.product-gallery-v2__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  z-index: 2;
}

.product-gallery-v2__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.product-gallery-v2__thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--gray-light);
  cursor: pointer;
  padding: 0;
  background: var(--cream);
  transition: border-color var(--transition);
  flex-shrink: 0;
}

.product-gallery-v2__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-v2__thumb.active,
.product-gallery-v2__thumb:hover {
  border-color: var(--orange);
}

/* Informações do produto */
.product-info-v2 {
  position: sticky;
  top: 100px;
}

.product-info-v2__type {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.product-info-v2__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 14px;
}

.product-info-v2__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.product-info-v2__stars {
  color: #F5A623;
  font-size: 1rem;
  letter-spacing: 2px;
}

.product-info-v2__rating-count {
  font-size: 0.82rem;
  color: var(--gray-mid);
}

/* Preço */
.product-info-v2__price-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.product-info-v2__price-current {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.product-info-v2__price-old {
  font-size: 1.1rem;
  color: var(--gray-mid);
  text-decoration: line-through;
}

.product-info-v2__price-badge {
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Frete */
.product-info-v2__shipping {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: #166534;
  margin-bottom: 28px;
}

.product-info-v2__shipping svg {
  flex-shrink: 0;
  color: #16A34A;
}

/* Opções de variante */
.product-info-v2__option {
  margin-bottom: 20px;
}

.product-info-v2__option-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.product-info-v2__option-selected {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--orange);
}

.product-info-v2__option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-info-v2__option-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--gray-light);
  border-radius: 6px;
  font-size: 0.88rem;
  font-family: var(--font-sans);
  color: var(--gray-dark);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}

.product-info-v2__option-btn:hover,
.product-info-v2__option-btn.active {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
}

/* Quantidade */
.product-info-v2__qty {
  margin-bottom: 24px;
}

.product-info-v2__qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 10px;
}

.product-info-v2__qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-family: var(--font-sans);
  color: var(--gray-dark);
  background: var(--cream);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.product-info-v2__qty-btn:hover {
  background: var(--orange);
  color: var(--white);
}

.product-info-v2__qty-input {
  width: 60px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--gray-light);
  border-right: 1.5px solid var(--gray-light);
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  outline: none;
  -moz-appearance: textfield;
}

.product-info-v2__qty-input::-webkit-inner-spin-button,
.product-info-v2__qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Botão comprar */
.product-info-v2__btn-buy {
  background: var(--btn-buy);
  color: #fff;
}
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-bottom: 20px;
}

.product-info-v2__btn-buy:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,101,10,0.35);
}

.product-info-v2__btn-buy--disabled {
  background: var(--gray-light);
  color: var(--gray-mid);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Benefícios */
.product-info-v2__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
  padding: 16px;
  background: var(--cream);
  border-radius: 10px;
}

.product-info-v2__benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-dark);
}

.product-info-v2__benefit-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* Abas */
.product-tabs-v2 {
  border-top: 1px solid var(--gray-light);
  padding-top: 24px;
}

/* Abas em largura total — abaixo do grid, centralizadas */
.product-tabs-v2--full {
  margin-top: 56px;
  padding-top: 0;
  border-top: none;
  border-radius: 12px;
  border: 1px solid var(--gray-light);
  overflow: hidden;
}

.product-tabs-v2--full .product-tabs-v2__nav {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 0;
  padding: 0 32px;
  gap: 8px;
}

.product-tabs-v2--full .product-tabs-v2__tab {
  padding: 16px 28px;
  font-size: 0.9rem;
}

.product-tabs-v2--full .product-tabs-v2__content {
  padding: 40px;
}

.product-tabs-v2--full .product-tabs-v2__body {
  max-width: 860px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.9;
}

.product-tabs-v2--full .product-details-table-v2 {
  max-width: 600px;
  margin: 0 auto;
}

.product-tabs-v2__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 20px;
}

.product-tabs-v2__tab {
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--gray-mid);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  margin-bottom: -1px;
}

.product-tabs-v2__tab:hover { color: var(--orange); }

.product-tabs-v2__tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.product-tabs-v2__body {
  font-size: 0.92rem;
  color: var(--gray-dark);
  line-height: 1.8;
}

.product-tabs-v2__body p { margin-bottom: 12px; }
.product-tabs-v2__body p:last-child { margin-bottom: 0; }

/* Tabela de detalhes */
.product-details-table-v2 {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.product-details-table-v2 tr {
  border-bottom: 1px solid var(--gray-light);
}

.product-details-table-v2 th {
  text-align: left;
  padding: 10px 16px 10px 0;
  font-weight: 600;
  color: var(--black);
  width: 40%;
}

.product-details-table-v2 td {
  padding: 10px 0;
  color: var(--gray-mid);
}

/* ============ PÁGINA DE COLEÇÃO ============ */
.collection-page-v2 {
  background: var(--white);
  min-height: 60vh;
}

.collection-page-v2__header {
  background: var(--cream);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--gray-light);
}

.collection-page-v2__header-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 32px;
}

.collection-page-v2__body {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 60px 80px;
}

.collection-page-v2__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-light);
}

.collection-page-v2__count {
  font-size: 0.88rem;
  color: var(--gray-mid);
}

.collection-page-v2__sort {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-mid);
}

.collection-page-v2__sort select {
  padding: 8px 12px;
  border: 1.5px solid var(--gray-light);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition);
}

.collection-page-v2__sort select:focus { border-color: var(--orange); }

.collection-page-v2__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.collection-page-v2__page-btn {
  padding: 8px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--gray-dark);
  transition: all var(--transition);
}

.collection-page-v2__page-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.collection-page-v2__page-btn--active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.collection-page-v2__empty {
  text-align: center;
  padding: 80px 0;
}

.collection-page-v2__empty p {
  font-size: 1.1rem;
  color: var(--gray-mid);
  margin-bottom: 24px;
}

/* ============ CARRINHO ============ */
.cart-page-v2 {
  background: var(--white);
  padding: 60px 0 80px;
}

.cart-page-v2__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.cart-page-v2__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* Item do carrinho */
.cart-item-v2 {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-light);
}

.cart-item-v2__image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream);
  display: block;
}

.cart-item-v2__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-v2__type {
  font-size: 0.72rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cart-item-v2__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.3;
}

.cart-item-v2__name a { color: inherit; }
.cart-item-v2__name a:hover { color: var(--orange); }

.cart-item-v2__variant {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-bottom: 12px;
}

.cart-item-v2__controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-item-v2__qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gray-light);
  border-radius: 6px;
  overflow: hidden;
}

.cart-item-v2__qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gray-dark);
  background: var(--cream);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.cart-item-v2__qty-btn:hover {
  background: var(--orange);
  color: var(--white);
}

.cart-item-v2__qty-num {
  width: 44px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  border-left: 1.5px solid var(--gray-light);
  border-right: 1.5px solid var(--gray-light);
  padding: 0 8px;
  line-height: 36px;
}

.cart-item-v2__remove {
  font-size: 0.78rem;
  color: var(--gray-mid);
  text-decoration: underline;
  transition: color var(--transition);
}

.cart-item-v2__remove:hover { color: #DC2626; }

.cart-item-v2__price {
  text-align: right;
  white-space: nowrap;
}

.cart-item-v2__price-current {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
}

.cart-item-v2__price-old {
  font-size: 0.82rem;
  color: var(--gray-mid);
  text-decoration: line-through;
  display: block;
}

/* Resumo do carrinho */
.cart-summary-v2 {
  background: var(--cream);
  border-radius: 12px;
  padding: 28px;
  position: sticky;
  top: 100px;
}

.cart-summary-v2__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}

.cart-summary-v2__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--gray-dark);
  margin-bottom: 12px;
}

.cart-summary-v2__row--shipping .cart-summary-v2__free {
  color: #16A34A;
  font-weight: 600;
}

.cart-summary-v2__divider {
  border-top: 1px solid var(--gray-light);
  margin: 16px 0;
}

.cart-summary-v2__row--total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}

.cart-summary-v2__checkout {
  display: block;
  text-align: center;
  width: 100%;
  padding: 15px;
  font-size: 0.95rem;
  border-radius: 10px;
  margin-bottom: 12px;
}

.cart-summary-v2__continue {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-mid);
  margin-bottom: 20px;
  transition: color var(--transition);
}

.cart-summary-v2__continue:hover { color: var(--orange); }

.cart-summary-v2__badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}

.cart-summary-v2__badges span {
  font-size: 0.78rem;
  color: var(--gray-mid);
}

.cart-page-v2__empty {
  text-align: center;
  padding: 80px 0;
}

.cart-page-v2__empty-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

/* ============ BUSCA ============ */
.search-page-v2 {
  padding: 60px 0 80px;
  background: var(--white);
}

.search-page-v2__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.search-page-v2__form {
  max-width: 600px;
  margin: 0 auto 48px;
}

.search-page-v2__input-wrap {
  display: flex;
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.search-page-v2__input-wrap:focus-within { border-color: var(--orange); }

.search-page-v2__input {
  flex: 1;
  padding: 14px 20px;
  font-size: 1rem;
  font-family: var(--font-sans);
  border: none;
  outline: none;
  color: var(--black);
  background: var(--white);
}

.search-page-v2__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.search-page-v2__btn:hover { background: var(--orange-dark); }

.search-page-v2__count {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-mid);
  margin-bottom: 32px;
}

.search-page-v2__no-results {
  text-align: center;
  padding: 60px 0;
  font-size: 1rem;
  color: var(--gray-mid);
  line-height: 1.8;
}

/* ============ BLOG ============ */
.blog-page-v2 {
  padding: 60px 0 80px;
  background: var(--white);
}

.blog-page-v2__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.blog-page-v2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.blog-card-v2 {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card-v2:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.blog-card-v2__image {
  display: block;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.blog-card-v2__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card-v2:hover .blog-card-v2__image img { transform: scale(1.06); }

.blog-card-v2__body {
  padding: 24px;
}

.blog-card-v2__date {
  font-size: 0.75rem;
  color: var(--gray-mid);
  margin-bottom: 8px;
}

.blog-card-v2__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card-v2__title a { color: inherit; }
.blog-card-v2__title a:hover { color: var(--orange); }

.blog-card-v2__excerpt {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card-v2__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  transition: color var(--transition);
}

.blog-card-v2__link:hover { color: var(--orange-dark); }

/* ============ ARTIGO ============ */
.article-page-v2 {
  padding: 60px 0 80px;
  background: var(--white);
}

.article-page-v2__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}

.article-page-v2__header {
  text-align: center;
  margin-bottom: 40px;
}

.article-page-v2__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin: 12px 0;
}

.article-page-v2__meta {
  font-size: 0.85rem;
  color: var(--gray-mid);
}

.article-page-v2__cover {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}

.article-page-v2__cover img {
  width: 100%;
  height: auto;
}

.article-page-v2__content {
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.9;
}

.article-page-v2__content h2,
.article-page-v2__content h3 {
  font-family: var(--font-serif);
  color: var(--black);
  margin: 32px 0 12px;
}

.article-page-v2__content p { margin-bottom: 16px; }
.article-page-v2__content img { border-radius: 8px; margin: 24px 0; }

.article-page-v2__back {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-light);
}

/* ============ PÁGINA SIMPLES ============ */
.simple-page-v2 {
  padding: 60px 0 80px;
  background: var(--white);
}

.simple-page-v2__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}

.simple-page-v2__content {
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.9;
  margin-top: 32px;
}

.simple-page-v2__content h2,
.simple-page-v2__content h3 {
  font-family: var(--font-serif);
  color: var(--black);
  margin: 28px 0 10px;
}

.simple-page-v2__content p { margin-bottom: 14px; }

/* ============ PÁGINA 404 ============ */
.error-page-v2 {
  padding: 100px 32px;
  text-align: center;
  background: var(--white);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page-v2__inner {
  max-width: 480px;
  margin: 0 auto;
}

.error-page-v2__icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.error-page-v2__code {
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
}

.error-page-v2__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ============ AUTENTICAÇÃO (Login / Registro) ============ */
.auth-page-v2 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  background: var(--cream);
}

.auth-page-v2__card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow);
}

.auth-page-v2__field {
  margin-bottom: 18px;
}

.auth-page-v2__field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.auth-page-v2__field input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.auth-page-v2__field input:focus { border-color: var(--orange); }

.auth-page-v2__submit {
  width: 100%;
  display: block;
  text-align: center;
  padding: 14px;
  font-size: 0.95rem;
  border-radius: 10px;
  margin-top: 8px;
  margin-bottom: 20px;
}

.auth-page-v2__links {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-mid);
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.auth-page-v2__links a {
  color: var(--orange);
  font-weight: 500;
  transition: color var(--transition);
}

.auth-page-v2__links a:hover { color: var(--orange-dark); }

/* ============ CONTA DO CLIENTE ============ */
.account-page-v2 {
  padding: 60px 0 80px;
  background: var(--white);
}

.account-page-v2__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
}

.account-page-v2__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-light);
  flex-wrap: wrap;
  gap: 16px;
}

.account-page-v2__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.account-page-v2__section-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}

.account-orders-v2 {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.account-order-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
}

.account-order-v2__number a {
  font-weight: 600;
  color: var(--orange);
  font-size: 0.9rem;
}

.account-order-v2__date,
.account-order-v2__status {
  font-size: 0.82rem;
  color: var(--gray-mid);
  margin-top: 4px;
}

.account-order-v2__total {
  font-weight: 700;
  color: var(--black);
  font-size: 1rem;
}

.account-address-v2 {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.8;
  background: var(--cream);
  padding: 20px;
  border-radius: 10px;
}

.account-page-v2__empty {
  font-size: 0.9rem;
  color: var(--gray-mid);
}

/* ============ RESPONSIVO — PÁGINAS ADICIONAIS ============ */
@media (max-width: 1100px) {
  .product-page-v2__container,
  .collection-page-v2__body,
  .cart-page-v2__container,
  .search-page-v2__container,
  .blog-page-v2__container { padding: 0 32px; }

  .product-page-v2__grid { gap: 40px; }
  .cart-page-v2__grid { grid-template-columns: 1fr 320px; gap: 32px; }
  .account-page-v2__grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .blog-page-v2__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .product-page-v2__container,
  .collection-page-v2__body,
  .cart-page-v2__container,
  .search-page-v2__container,
  .blog-page-v2__container { padding: 0 20px; }

  .product-page-v2__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-info-v2 { position: static; }

  .cart-page-v2__grid {
    grid-template-columns: 1fr;
  }

  .cart-item-v2 {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
  }

  .cart-item-v2__price {
    grid-column: 2;
    text-align: left;
  }

  .collection-page-v2__toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .blog-page-v2__grid { grid-template-columns: 1fr; }

  .auth-page-v2__card { padding: 32px 24px; }

  .account-page-v2__header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .product-info-v2__benefits { grid-template-columns: 1fr; }
  .error-page-v2__actions { flex-direction: column; }
}

/* ============================================
   ABAS DO PRODUTO — RESPONSIVO MOBILE
   ============================================ */
@media (max-width: 768px) {
  /* Nav das abas com scroll horizontal no mobile */
  .product-tabs-v2--full .product-tabs-v2__nav {
    padding: 0 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 0;
  }
  .product-tabs-v2--full .product-tabs-v2__nav::-webkit-scrollbar { display: none; }

  /* Abas não encolhem no mobile */
  .product-tabs-v2--full .product-tabs-v2__tab {
    padding: 14px 20px;
    font-size: 0.88rem;
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* Conteúdo das abas com padding menor no mobile */
  .product-tabs-v2--full .product-tabs-v2__content {
    padding: 24px 20px;
  }

  /* Corpo do texto sem max-width para ocupar toda a largura */
  .product-tabs-v2--full .product-tabs-v2__body {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.8;
  }

  /* Tabela de detalhes responsiva */
  .product-tabs-v2--full .product-details-table-v2 {
    max-width: 100%;
  }
  .product-details-table-v2 th,
  .product-details-table-v2 td {
    padding: 10px 12px;
    font-size: 0.82rem;
  }
}

/* ============================================
   HEADER SIMPLES — menu centralizado + dropdown
   ============================================ */
.header-simple-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: relative;
  min-height: 56px;
}

.header-simple-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav-item-v2 {
  position: relative;
}

.nav-item-v2 > .nav-link-v2 {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 18px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}

.nav-item-v2 > .nav-link-v2:hover,
.nav-item-v2 > .nav-link-v2.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* Setinha */
.nav-arrow {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.nav-item-v2.has-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown-v2 {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  min-width: 200px;
  padding: 8px 0;
  z-index: 999;
  list-style: none;
  margin: 0;
}

.nav-item-v2.has-dropdown:hover .nav-dropdown-v2 {
  display: block;
}

.nav-dropdown-v2 li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--black);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-v2 li a:hover {
  background: var(--cream);
  color: var(--orange);
}

/* Campo de busca no header simples */
.header-simple-search {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
}

.header-simple-search form {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-light);
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream);
}

.header-simple-search input {
  border: none;
  background: transparent;
  padding: 6px 12px;
  font-size: 0.82rem;
  outline: none;
  width: 160px;
}

.header-simple-search button {
  background: none;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
}

.header-simple-search button:hover {
  color: var(--orange);
}

@media (max-width: 768px) {
  .header-simple-nav { display: none; }
  .header-simple-search { position: static; transform: none; }
}

/* ============================================
   PÁGINAS DE CONTA — ESTILOS GLOBAIS DE SUPORTE
   ============================================ */

/* Garante que o body não tenha padding extra nas páginas de conta */
.template-customers-account .main-content,
.template-customers-login .main-content,
.template-customers-register .main-content,
.template-customers-addresses .main-content,
.template-customers-order .main-content {
  padding: 0;
}

/* Botão de sair — reset de estilo de formulário */
.acct-logout-form { display: inline; }
.acct-logout-form button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

/* Garante que links dentro de cards de conta não herdem cor azul padrão */
.acct-card a,
.addr-card a,
.order-card a {
  text-decoration: none;
}

/* Responsivo geral das páginas de conta */
@media (max-width: 600px) {
  .acct-container,
  .addr-container,
  .order-container { padding: 0 16px; }

  .acct-wrap,
  .addr-wrap,
  .order-wrap { padding: 28px 0 60px; }

  .order-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ===== DESCRIÇÃO COLAPSÁVEL ===== */
.product-desc-wrapper {
  position: relative;
}
.product-desc-collapsed {
  max-height: 220px;
  overflow: hidden;
}
.product-desc-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
}
.product-desc-toggle {
  display: block;
  margin: 12px auto 0;
  background: none;
  border: 1.5px solid #E8650A;
  color: #E8650A;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.product-desc-toggle:hover {
  background: #E8650A;
  color: #fff;
}

/* ===== SEÇÃO DE AVALIAÇÕES BK ===== */
.product-reviews-section {
  background: #FAF8F5;
  padding: 56px 0 64px;
  margin-top: 0;
}
.product-reviews-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.product-reviews-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #E8650A;
}
#bk-reviews-widget {
  min-height: 60px;
}
