@charset "UTF-8";
.virtual-fav-btn.active {
  color: #ff4757;
  border-color: #ff4757;
}

.virtual-fav-btn.active i {
  animation: heartPulse 0.3s ease-in-out;
}

@keyframes heartPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
/* ==========================================================================
   PÁGINA DE FAVORITOS (GRID & CARDS)
   ========================================================================== */
.virtual-favorites-page-wrapper {
  background-color: #f9f9f9;
  padding: 60px 0;
  min-height: 80vh;
  /* Garante altura em telas grandes */
}

.virtual-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cabeçalho */
.favorites-header {
  text-align: center;
  margin-bottom: 50px;
}

.favorites-header h1 {
  font-family: var(--font-heading, sans-serif);
  font-size: 36px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 800;
}

.favorites-header p {
  color: #777;
  font-size: 16px;
}

/* --- GRID DE FAVORITOS --- */
.virtual-fav-grid {
  min-height: 200px;
}

/* Estado: Com Itens (Grid Real) */
.virtual-fav-grid.has-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 Colunas */
  gap: 30px;
}

/* Estado: Carregando / Vazio (Centralizado) */
.virtual-fav-grid:not(.has-items) {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- CARD DE PRODUTO FAVORITO --- */
.fav-item-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.fav-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Imagem */
.fav-card-image {
  position: relative;
  height: 220px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fav-card-image img {
  max-height: 80%;
  width: auto;
  transition: transform 0.4s ease;
}

.fav-item-card:hover .fav-card-image img {
  transform: scale(1.08);
}

/* Botão Remover (X) no Card */
.remove-fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}

.remove-fav-btn:hover {
  color: #ff4757;
  background: #fff;
  transform: scale(1.1);
}

.remove-fav-btn svg {
  width: 16px;
  height: 16px;
}

/* Conteúdo do Card */
.fav-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fav-card-content .product-title {
  text-decoration: none;
  color: #333;
  margin-bottom: 10px;
}

.fav-card-content h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 42px;
  /* Altura fixa para alinhar */
}

/* Rodapé do Card (Botão Ver) */
.fav-card-footer {
  margin-top: auto;
  padding-top: 15px;
}

.btn-view-product {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--cn-orange, #ff9900);
  color: #fff;
  text-decoration: none;
  padding: 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  transition: 0.2s;
}

.btn-view-product:hover {
  background: var(--cn-orange-hover, #e68a00);
  transform: translateY(-2px);
}

/* --- ESTADO VAZIO (EMPTY STATE) --- */
.empty-favs-container {
  text-align: center;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px dashed #ddd;
  max-width: 500px;
}

.empty-icon {
  color: #ddd;
  margin-bottom: 20px;
}

.empty-icon svg {
  width: 60px;
  height: 60px;
}

.empty-favs-container h2 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.empty-favs-container p {
  color: #777;
  margin-bottom: 25px;
}

.btn-go-shop {
  background: var(--cn-wine, #800020);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s;
}

.btn-go-shop:hover {
  background: #600018;
  transform: translateY(-2px);
}

/* --- LOADING SPINNER --- */
.loading-state {
  text-align: center;
  color: #999;
}

.spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--cn-orange, #ff9900);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* --- RESPONSIVIDADE --- */
@media (max-width: 991px) {
  .virtual-fav-grid.has-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .virtual-fav-grid.has-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .fav-card-image {
    height: 160px;
  }
  .favorites-header h1 {
    font-size: 28px;
  }
}
/* ================= CORREÇÃO DE EMERGÊNCIA ================= */
/* 1. Remove Sidebar Globalmente (Força Bruta) */
.woocommerce-page #secondary,
.woocommerce-page #sidebar,
.woocommerce-page .widget-area,
.woocommerce-page .sidebar-main,
.archive.woocommerce #secondary {
  display: none !important;
}

/* 2. Força conteúdo a preencher a tela */
.woocommerce-page #primary,
.woocommerce-page .content-area,
.woocommerce-page .site-content {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  margin: 0 !important;
  flex: 0 0 100% !important;
}

/* 3. Correção do Botão Verde do Carrinho (Quebra de Texto) */
.checkout-button {
  white-space: normal !important;
  /* Permite quebrar linha */
  line-height: 1.2 !important;
  /* Espaçamento melhor entre linhas */
  padding: 15px 10px !important;
  /* Menos padding lateral */
  font-size: 14px !important;
  /* Fonte um pouco menor */
  height: auto !important;
  /* Altura automática */
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 4. Ajuste da Coluna de Totais para não espremer */
.virtual-cart-totals {
  min-width: 320px;
  /* Garante largura mínima */
}

/* ==========================================================================
   PÁGINA 404 (NOT FOUND) PREMIUM
   ========================================================================== */
/* --- 1. CONTAINER GERAL --- */
.virtual-404-wrapper {
  background-color: #f9f9f9;
  /* Textura de fundo sutil para não ficar chapado */
  background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
  background-size: 20px 20px;
  min-height: 80vh;
  /* Ocupa quase a tela toda */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.error-content {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #fff;
  /* Animação de entrada */
  animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- 2. ÍCONE (SACOLA VAZIA) --- */
.error-icon {
  margin-bottom: 20px;
  display: inline-block;
}

.error-icon svg {
  width: 120px;
  height: 120px;
  stroke: var(--cn-wine, #800020);
  /* Cor Vinho */
  stroke-width: 1.5;
  fill: none;
  /* Animação de flutuação */
  animation: floating 3s ease-in-out infinite;
}

/* Sombra embaixo da sacola */
.error-icon::after {
  content: "";
  display: block;
  width: 80px;
  height: 10px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  margin: 10px auto 0 auto;
  animation: shadowPulse 3s ease-in-out infinite;
}

/* --- 3. TIPOGRAFIA --- */
.error-code {
  font-family: var(--font-heading, sans-serif);
  font-size: 100px;
  font-weight: 900;
  line-height: 1;
  margin: 0;
  /* Texto com gradiente (Opcional, se não gostar deixe cor sólida) */
  background: linear-gradient(45deg, var(--cn-wine, #800020), var(--cn-orange, #ff9900));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--cn-wine, #800020);
  /* Fallback */
  letter-spacing: -3px;
  margin-bottom: 10px;
}

.error-title {
  font-family: var(--font-primary, sans-serif);
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.error-text {
  font-family: var(--font-primary, sans-serif);
  font-size: 16px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* --- 4. BOTÃO DE VOLTAR --- */
.error-actions .btn-home {
  display: inline-block;
  background-color: var(--cn-orange, #ff9900);
  color: #fff;
  font-family: var(--font-heading, sans-serif);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  padding: 15px 40px;
  border-radius: 50px;
  /* Botão Pílula */
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.error-actions .btn-home:hover {
  background-color: var(--cn-orange-hover, #e68a00);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
}

/* --- 5. ANIMAÇÕES --- */
@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes shadowPulse {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(0.8);
    opacity: 0.05;
  }
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
}
/* --- RESPONSIVO --- */
@media (max-width: 768px) {
  .error-content {
    padding: 40px 20px;
  }
  .error-code {
    font-size: 80px;
  }
  .error-title {
    font-size: 24px;
  }
  .error-icon svg {
    width: 100px;
    height: 100px;
  }
}
/* ==========================================================================
   PÁGINA DE CONTATO (PREMIUM STYLE)
   ========================================================================== */
/* --- 1. ESTRUTURA GERAL --- */
.virtual-contact-wrapper {
  background-color: #f9f9f9;
  /* Fundo cinza bem claro */
  /* Padrão sutil de fundo (opcional, dá textura) */
  background-image: radial-gradient(#e1e1e1 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 60px 0;
  min-height: 80vh;
  font-family: var(--font-primary, sans-serif);
}

.virtual-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- 2. CABEÇALHO DA PÁGINA --- */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-header h1 {
  font-family: var(--font-heading, sans-serif);
  font-size: 42px;
  font-weight: 800;
  color: var(--cn-wine, #800020);
  margin-bottom: 15px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.contact-header p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

/* --- 3. GRID PRINCIPAL (INFO + FORM) --- */
.contact-grid {
  display: grid;
  /* Coluna da esquerda (Info) fixa em 350px, Direita (Form) ocupa o resto */
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}

/* Estilo Base dos Cards */
.contact-info-card,
.contact-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* Sombra suave */
  border: 1px solid #fff;
  /* Borda branca para contraste sutil */
  transition: transform 0.3s ease;
}

.contact-info-card:hover,
.contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* --- 4. CARD DE INFORMAÇÕES (ESQUERDA) --- */
.contact-info-card h3 {
  font-family: var(--font-heading, sans-serif);
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-info-card .subtitle {
  font-size: 14px;
  color: #888;
  margin-bottom: 30px;
  display: block;
}

/* Itens (Telefone, Email, Endereço) */
.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
}

.info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 10px;
}

/* Ícones Circulares */
.icon-circle {
  width: 50px;
  height: 50px;
  background-color: #fffbf0;
  /* Fundo creme/amarelo claro */
  color: var(--cn-orange, #ff9900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-item:hover .icon-circle {
  background-color: var(--cn-orange, #ff9900);
  color: #fff;
  transform: scale(1.1);
}

.icon-circle svg {
  width: 24px;
  height: 24px;
}

/* Textos da Info */
.info-text {
  display: flex;
  flex-direction: column;
}

.info-text .label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-text .value {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

/* Redes Sociais */
.social-links {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icon {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #555;
  background: #f5f5f5;
  padding: 10px 18px;
  border-radius: 50px;
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--cn-wine, #800020);
  color: #fff;
  transform: translateY(-2px);
}

/* --- 5. CARD DE FORMULÁRIO (DIREITA) --- */
.contact-form-card h3 {
  font-family: var(--font-heading, sans-serif);
  font-size: 24px;
  color: var(--cn-wine, #800020);
  margin-bottom: 30px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #444;
  margin-bottom: 8px;
}

.virtual-form input,
.virtual-form select,
.virtual-form textarea {
  width: 100%;
  padding: 0 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fafafa;
  font-family: var(--font-primary, sans-serif);
  font-size: 15px;
  color: #333;
  transition: all 0.3s;
}

.virtual-form input,
.virtual-form select {
  height: 50px;
  /* Altura confortável */
}

.virtual-form textarea {
  padding: 15px;
  resize: vertical;
}

/* Estado de Foco (Ao digitar) */
.virtual-form input:focus,
.virtual-form select:focus,
.virtual-form textarea:focus {
  background-color: #fff;
  border-color: var(--cn-orange, #ff9900);
  box-shadow: 0 0 0 4px rgba(255, 153, 0, 0.1);
  /* Glow laranja suave */
  outline: none;
}

/* Botão de Enviar */
.btn-send {
  background-color: var(--cn-orange, #ff9900);
  color: #fff;
  font-family: var(--font-heading, sans-serif);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 15px;
  padding: 18px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(230, 142, 0, 0.3);
  margin-top: 10px;
}

.btn-send:hover {
  background-color: var(--cn-orange-hover, #e68a00);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 142, 0, 0.4);
}

/* --- 6. MAPA --- */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 10px;
  /* Moldura branca */
}

.map-placeholder iframe {
  border-radius: 8px;
  display: block;
  filter: grayscale(20%);
  /* Deixa o mapa levemente desaturado para ficar chique */
  transition: filter 0.3s;
}

.map-placeholder iframe:hover {
  filter: grayscale(0%);
}

/* --- 7. RESPONSIVIDADE --- */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    /* Uma coluna */
    gap: 30px;
  }
  .contact-info-card {
    order: 2;
    /* Informações vão para baixo no mobile (opcional) */
  }
  .contact-form-card {
    order: 1;
    /* Formulário primeiro */
  }
  .contact-header h1 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .virtual-contact-wrapper {
    padding: 40px 0;
  }
  .contact-info-card,
  .contact-form-card {
    padding: 25px;
  }
  .map-container iframe {
    height: 300px;
  }
}
/* Ajuste Fino para Página de Contato */
/* Garante que o banner ocupe a largura total */
.category-banner {
  width: 100%;
  /* Se tiver algum margin global atrapalhando */
  margin: 0;
}

/* Removemos a margem antiga do wrapper para usar o padding-top */
.virtual-contact-wrapper {
  /* O padding-top já foi colocado inline no PHP (60px), 
     mas aqui garantimos o fundo correto */
  background-color: #f9f9f9;
}

/* --- REDES SOCIAIS (APENAS ÍCONES) --- */
.social-links {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  gap: 15px;
  /* Espaço entre as bolinhas */
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  /* Largura fixa */
  height: 45px;
  /* Altura fixa */
  border-radius: 50%;
  /* Faz virar bola */
  background: #f5f5f5;
  color: #555;
  font-size: 20px;
  /* Tamanho do ícone */
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Efeito elástico */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Hover Geral */
.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Cores específicas das marcas no Hover (Opcional - Toque Premium) */
.social-icon.instagram:hover {
  background: #E1306C;
  /* Cor oficial Instagram */
}

.social-icon.facebook:hover {
  background: #1877F2;
  /* Cor oficial Facebook */
}

.social-icon.linkedin:hover {
  background: #0077B5;
  /* Cor oficial LinkedIn */
}

/* Ajuste Específico para Página de Busca */
.products-grid-search {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 Colunas no Desktop */
  gap: 30px;
  margin-bottom: 40px;
}

/* Responsivo */
@media (max-width: 1024px) {
  .products-grid-search {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .products-grid-search {
    grid-template-columns: repeat(2, 1fr); /* 2 Colunas no Mobile */
    gap: 15px;
  }
}/*# sourceMappingURL=extra.css.map */