/*======================================================================
# PRODUTOS.CSS - Para meninas.php e meninos.php
======================================================================*/

/*======================================================================
# SEÇÃO DE NOVIDADES E TÍTULOS
======================================================================*/
.new-arrivals-section {
  padding: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-title-left {
  text-align: left;
}

.fancy-title {
  position: relative;
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.new-badge {
  position: absolute;
  top: -10px;
  right: -50px;
  background-color: var(--accent-color);
  color: var(--white);
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 20px;
  transform: rotate(15deg);
  font-family: var(--body-font);
  animation: pulse 2s infinite;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.title-underline {
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0;
  border-radius: 2px;
}

/*======================================================================
# CARDS DE PRODUTOS
======================================================================*/
.card {
  transition: all 0.3s ease;
  border: 4px double #ddd;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.borda-double {
  border: 4px double #ddd;
}

.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: none;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card-title {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #666;
  display: block;
  max-width: 100%;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-text {
  font-size: 0.9rem;
}

.preco-destaque {
  color: #4a5568 !important;
  font-weight: 400 !important;
  font-family: 'Poppins', sans-serif !important;
  border-top: 1px solid #eee;
  padding-top: 12px;
  margin-top: 8px;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.card-body {
  background-color: var(--white);
  font-family: Arial, sans-serif;
  padding: 15px;
}

/*======================================================================
# BADGES ESPECÍFICAS POR CATEGORIA - MENINAS
======================================================================*/
.girls-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #e91e63, #ad1457);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
  z-index: 2;
}

.girls-badge i {
  font-size: 10px;
  animation: girl-sparkle 2s ease-in-out infinite;
}

@keyframes girl-sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  25% { transform: scale(1.1) rotate(90deg); opacity: 0.8; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
  75% { transform: scale(1.1) rotate(270deg); opacity: 0.8; }
}

/*======================================================================
# BADGES ESPECÍFICAS POR CATEGORIA - MENINOS
======================================================================*/
.boys-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #2196f3, #1565c0);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
  z-index: 2;
}

.boys-badge i {
  font-size: 10px;
  animation: boy-energy 2.5s ease-in-out infinite;
}

@keyframes boy-energy {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(-15deg); }
  50% { transform: scale(1.2) rotate(0deg); }
  75% { transform: scale(1.1) rotate(15deg); }
}

/*======================================================================
# TAMANHOS DOS PRODUTOS
======================================================================*/
.tamanhos {
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.tamanho {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ddd;
  text-align: center;
  padding: 0;
  font-weight: bold;
  transition: all 0.3s ease;
  background-color: #34C759;
  color: white;
  text-decoration: none;
  font-size: 12px;
}

.tamanho:hover {
  opacity: 0.8;
  color: white;
  transform: scale(1.1);
  text-decoration: none;
}

.tamanho.indisponivel {
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: line-through;
  background-color: #FF6347;
}

.tamanho.indisponivel:hover {
  transform: none;
  opacity: 0.5;
}

/*======================================================================
# BOTÕES DE AÇÃO DO PRODUTO
======================================================================*/
.product-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
}

.btn-comprar {
  flex: 1;
  background-color: #34C759;
  color: #FFFFFF;
  font-weight: 500;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(52, 199, 89, 0.2);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-comprar:hover {
  background-color: #2DB54F;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(52, 199, 89, 0.3);
  color: #fff;
  text-decoration: none;
}

.btn-comprar.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #999;
  transform: none;
}

.btn-comprar.disabled:hover {
  background-color: #999;
  transform: none;
  box-shadow: 0 2px 6px rgba(52, 199, 89, 0.2);
}

.btn-carrinho {
  width: 46px;
  height: 46px;
  background-color: #FFFFFF;
  color: #25D366;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-carrinho:hover {
  background-color: #F7F7F7;
  border-color: #D9D9D9;
  color: #1EBB5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.btn-carrinho.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #999;
  color: #fff;
  border-color: #999;
}

.btn-carrinho.disabled:hover {
  background-color: #999;
  color: #fff;
  border-color: #999;
  transform: none;
}

.btn-carrinho i {
  font-size: 18px;
}

/*======================================================================
# CONTROLES DE QUANTIDADE NO CARRINHO
======================================================================*/
.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.quantity-controls.mobile-horizontal {
  justify-content: space-between;
  margin-top: 0;
  margin-left: 10px;
  flex: 1;
  max-width: 120px;
}

.quantity-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-color);
  background-color: var(--white);
  color: var(--text-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  font-weight: bold;
  user-select: none;
}

.quantity-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.quantity-btn:active {
  transform: scale(0.95);
}

.quantity-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f5f5f5;
}

.quantity-btn.disabled:hover {
  background-color: #f5f5f5;
  color: var(--text-color);
  border-color: var(--border-color);
}

.quantity-display {
  min-width: 35px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-color);
  padding: 4px 8px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: var(--light-bg);
}

/*======================================================================
# LAYOUT DO ITEM DO CARRINHO MOBILE
======================================================================*/
.carrinho-item {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
  gap: 12px;
}

.carrinho-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.carrinho-item-info {
  flex: 1;
  min-width: 0;
}

.carrinho-item-nome {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 4px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.carrinho-item-detalhes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.carrinho-item-tamanho {
  font-size: 12px;
  color: var(--light-text);
  background-color: var(--light-bg);
  padding: 2px 6px;
  border-radius: 3px;
}

.carrinho-item-preco {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}

.carrinho-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-remover {
  background: none;
  border: none;
  color: #dc3545;
  font-size: 12px;
  cursor: pointer;
  padding: 4px;
  border-radius: 3px;
  transition: var(--transition);
}

.btn-remover:hover {
  background-color: rgba(220, 53, 69, 0.1);
  transform: scale(1.1);
}

/*======================================================================
# TOTAIS DO CARRINHO
======================================================================*/
.subtotal, .total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.subtotal {
  background-color: var(--light-bg);
  color: var(--text-color);
  font-weight: 500;
}

.total {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  border-bottom: none;
  margin-top: 10px;
  border-radius: 6px;
  margin-left: 15px;
  margin-right: 15px;
  box-shadow: 0 2px 8px rgba(106, 197, 202, 0.3);
}

#subtotal-valor, #total-valor {
  font-weight: 700;
  font-size: 16px;
}

#total-valor {
  font-size: 18px;
  color: var(--white);
}

/*======================================================================
# SIDEBAR DE FILTROS DESKTOP
======================================================================*/
.filtro-wrapper {
  width: 300px;
  padding-top: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  margin-left: -30px !important;
  margin-top: -60px !important;
}

.filtro-container {
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  margin-bottom: 20px;
}

.filtro-container:hover {
  box-shadow: 0 8px 25px rgba(106, 197, 202, 0.2);
}

.filtro-titulo {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--text-color);
  padding: 10px 0;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
  position: relative;
}

.filtro-titulo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--primary-color);
}

.filtro-item {
  padding: 12px 5px;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.filtro-item:last-child {
  border-bottom: none;
}

.filtro-item:hover {
  background-color: rgba(106, 197, 202, 0.05);
  transform: translateX(5px);
}

.filtro-item a {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 400;
  transition: var(--transition);
  display: block;
  width: 100%;
}

.filtro-item a:hover,
.filtro-item a.active {
  color: var(--primary-color);
}

.filtro-item i {
  margin-right: 10px;
  color: var(--primary-color);
}

/*======================================================================
# FILTRO DE TAMANHO DESKTOP
======================================================================*/
.size-options {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  justify-content: flex-start !important;
  margin-top: 10px !important;
}

.size-checkbox {
  opacity: 0 !important;
  position: absolute !important;
  pointer-events: none !important;
}

.size-label {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  border: 2px solid var(--border-color) !important;
  border-radius: var(--border-radius-sm) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--light-text) !important;
  background-color: var(--white) !important;
  position: relative !important;
  user-select: none !important;
}

.size-checkbox:checked + .size-label {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  border-color: var(--primary-color) !important;
  transform: scale(1.05) !important;
  box-shadow: 0 4px 12px rgba(106, 197, 202, 0.4) !important;
}

.size-checkbox:checked + .size-label::after {
  content: '✓' !important;
  position: absolute !important;
  top: -10px !important;
  right: -10px !important;
  background-color: var(--accent-color) !important;
  color: white !important;
  border-radius: 50% !important;
  width: 18px !important;
  height: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 11px !important;
  font-weight: bold !important;
  border: 2px solid white !important;
}

.size-label:hover {
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 12px rgba(106, 197, 202, 0.3) !important;
}

/*======================================================================
# ORDENAÇÃO DESKTOP
======================================================================*/
.ordenar-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.ordenar-btn {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  padding: 10px 15px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-color);
}

.ordenar-btn:hover {
  background-color: var(--light-bg);
  border-color: var(--primary-color);
}

.ordenar-btn i {
  margin-right: 5px;
}

.ordenar-opcoes {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow);
  min-width: 200px;
  z-index: 100;
  display: none;
  overflow: hidden;
  margin-top: 2px;
}

.ordenar-opcoes.show {
  display: block;
}

.ordenar-opcoes a {
  display: block;
  padding: 10px 15px;
  color: var(--text-color);
  transition: var(--transition);
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
}

.ordenar-opcoes a:last-child {
  border-bottom: none;
}

.ordenar-opcoes a:hover {
  background-color: var(--light-bg);
  color: var(--primary-color);
}

.ordem-atual {
  font-weight: 500;
  color: var(--primary-color);
}

.section-title-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title-left {
  flex: 1;
}

/*======================================================================
# SEÇÕES DE INFORMAÇÃO - MENINAS E MENINOS
======================================================================*/
.girls-info-section {
  background: linear-gradient(135deg, #fce4ec, #f8bbd9);
  border-radius: 15px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.1);
}

.boys-info-section {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 15px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.1);
}

.girls-info-card, .boys-info-card {
  padding: 30px;
}

.girls-info-header, .boys-info-header {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.girls-info-header i {
  font-size: 2rem;
  color: #e91e63;
  animation: girl-sparkle 3s ease-in-out infinite;
}

.boys-info-header i {
  font-size: 2rem;
  color: #2196f3;
  animation: boy-energy 3s ease-in-out infinite;
}

.girls-info-header h3, .boys-info-header h3 {
  color: #333;
  margin: 0;
  font-weight: 600;
}

.girls-feature, .boys-feature {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.girls-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.15);
}

.boys-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.15);
}

.girls-feature i {
  font-size: 2rem;
  color: #e91e63;
  margin-bottom: 15px;
  display: block;
}

.boys-feature i {
  font-size: 2rem;
  color: #2196f3;
  margin-bottom: 15px;
  display: block;
}

.girls-feature h5, .boys-feature h5 {
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

.girls-feature p, .boys-feature p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.girls-no-products, .boys-no-products {
  padding: 40px;
}

.girls-no-products i {
  animation: girl-sparkle 4s ease-in-out infinite;
}

.boys-no-products i {
  animation: boy-energy 4s ease-in-out infinite;
}
/*======================================================================
# CATEGORIAS.CSS - Para acessórios.php e brinquedos.php
======================================================================*/

/*======================================================================
# BADGES ESPECÍFICAS PARA ACESSÓRIOS
======================================================================*/
.accessories-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
  z-index: 2;
}

.accessories-badge i {
  font-size: 10px;
  animation: accessory-shine 2.5s ease-in-out infinite;
}

@keyframes accessory-shine {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  25% { transform: scale(1.1) rotate(45deg); opacity: 0.9; }
  50% { transform: scale(1.2) rotate(90deg); opacity: 1; }
  75% { transform: scale(1.1) rotate(135deg); opacity: 0.9; }
}

/*======================================================================
# BADGES ESPECÍFICAS PARA BRINQUEDOS
======================================================================*/
.toys-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #9c27b0, #7b1fa2);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(156, 39, 176, 0.3);
  z-index: 2;
}

.toys-badge i {
  font-size: 10px;
  animation: toy-bounce 2s ease-in-out infinite;
}

@keyframes toy-bounce {
  0%, 100% { transform: scale(1) translateY(0); }
  25% { transform: scale(1.1) translateY(-3px); }
  50% { transform: scale(1.2) translateY(-5px); }
  75% { transform: scale(1.1) translateY(-2px); }
}

/*======================================================================
# TAMANHO ÚNICO PARA ACESSÓRIOS
======================================================================*/
.tamanho-unico {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
  animation: accessory-glow 3s ease-in-out infinite;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tamanho-unico:hover {
  background: linear-gradient(135deg, #f57c00, #e65100);
  color: white;
  transform: scale(1.05);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
}

@keyframes accessory-glow {
  0%, 100% { box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3); }
  50% { box-shadow: 0 4px 16px rgba(255, 152, 0, 0.5); }
}

/* Tamanho único indisponível - para acessórios */
.tamanho-unico.indisponivel {
  background: #999;
  color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
  animation: none;
}

.tamanho-unico.indisponivel:hover {
  transform: none;
  background: #999;
  color: #ccc;
  box-shadow: 0 2px 8px rgba(153, 153, 153, 0.3);
}

/*======================================================================
# SEÇÕES DE INFORMAÇÃO - ACESSÓRIOS
======================================================================*/
.accessories-info-section {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border-radius: 15px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.1);
}

.accessories-info-card {
  padding: 30px;
}

.accessories-info-header {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.accessories-info-header i {
  font-size: 2rem;
  color: #ff9800;
  animation: accessory-shine 3s ease-in-out infinite;
}

.accessories-info-header h3 {
  color: #333;
  margin: 0;
  font-weight: 600;
}

.accessories-feature {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.accessories-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.15);
}

.accessories-feature i {
  font-size: 2rem;
  color: #ff9800;
  margin-bottom: 15px;
  display: block;
}

.accessories-feature h5 {
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

.accessories-feature p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.accessories-no-products {
  padding: 40px;
}

.accessories-no-products i {
  animation: accessory-shine 4s ease-in-out infinite;
}

/*======================================================================
# SEÇÕES DE INFORMAÇÃO - BRINQUEDOS
======================================================================*/
.toys-info-section {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
  border-radius: 15px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(156, 39, 176, 0.1);
}

.toys-info-card {
  padding: 30px;
}

.toys-info-header {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.toys-info-header i {
  font-size: 2rem;
  color: #9c27b0;
  animation: toy-bounce 3s ease-in-out infinite;
}

.toys-info-header h3 {
  color: #333;
  margin: 0;
  font-weight: 600;
}

.toys-feature {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.toys-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(156, 39, 176, 0.15);
}

.toys-feature i {
  font-size: 2rem;
  color: #9c27b0;
  margin-bottom: 15px;
  display: block;
}

.toys-feature h5 {
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

.toys-feature p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.toys-no-products {
  padding: 40px;
}

.toys-no-products i {
  animation: toy-bounce 4s ease-in-out infinite;
}

/*======================================================================
# SIDEBAR DE FILTROS DESKTOP - ESPECÍFICO PARA CATEGORIAS
======================================================================*/
.filtro-wrapper {
  width: 300px;
  padding-top: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  margin-left: -30px !important;
  margin-top: -60px !important;
}

.filtro-container {
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  margin-bottom: 20px;
}

.filtro-container:hover {
  box-shadow: 0 8px 25px rgba(106, 197, 202, 0.2);
}

.filtro-titulo {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--text-color);
  padding: 10px 0;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
  position: relative;
}

.filtro-titulo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--primary-color);
}

.filtro-item {
  padding: 12px 5px;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.filtro-item:last-child {
  border-bottom: none;
}

.filtro-item:hover {
  background-color: rgba(106, 197, 202, 0.05);
  transform: translateX(5px);
}

.filtro-item a {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 400;
  transition: var(--transition);
  display: block;
  width: 100%;
}

.filtro-item a:hover,
.filtro-item a.active {
  color: var(--primary-color);
}

.filtro-item i {
  margin-right: 10px;
  color: var(--primary-color);
}

/*======================================================================
# FILTROS DESKTOP - ESPECÍFICO PARA CATEGORIAS
======================================================================*/
.filtro-wrapper {
  width: 300px;
  padding-top: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  margin-left: -30px !important;
  margin-top: -60px !important;
}

.filtro-container {
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  margin-bottom: 20px;
}

.filtro-container:hover {
  box-shadow: 0 8px 25px rgba(106, 197, 202, 0.2);
}

.filtro-titulo {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--text-color);
  padding: 10px 0;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
  position: relative;
}

.filtro-titulo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--primary-color);
}

.filtro-item {
  padding: 12px 5px;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.filtro-item:last-child {
  border-bottom: none;
}

.filtro-item:hover {
  background-color: rgba(106, 197, 202, 0.05);
  transform: translateX(5px);
}

.filtro-item a {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 400;
  transition: var(--transition);
  display: block;
  width: 100%;
}

.filtro-item a:hover,
.filtro-item a.active {
  color: var(--primary-color);
}

.filtro-item i {
  margin-right: 10px;
  color: var(--primary-color);
}

/*======================================================================
# FILTRO DE PREÇO PARA CATEGORIAS
======================================================================*/
.price-value {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px !important;
  font-size: 14px !important;
  color: var(--text-color) !important;
  font-weight: 600 !important;
}

.price-value span {
  background-color: var(--light-bg);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.slider-container {
  position: relative;
  height: 8px !important;
  background-color: #e9ecef !important;
  border-radius: 4px !important;
  margin: 20px 0 !important;
  cursor: pointer;
}

.price-range {
  position: absolute;
  height: 8px !important;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
  border-radius: 4px !important;
  top: 0;
  transition: all 0.3s ease !important;
}

.price-input {
  display: flex;
  gap: 12px !important;
  margin-top: 20px !important;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.field span {
  font-size: 12px !important;
  color: var(--light-text) !important;
  margin-bottom: 8px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-weight: 600 !important;
}

.field input {
  -moz-appearance: textfield !important;
  padding: 10px 12px !important;
  border: 2px solid var(--border-color) !important;
  border-radius: var(--border-radius-sm) !important;
  background-color: var(--white) !important;
  color: var(--text-color) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: var(--transition) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.field input::-webkit-outer-spin-button,
.field input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

.field input:focus {
  outline: none !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(106, 197, 202, 0.1) !important;
  background-color: #fafafa !important;
}

.apply-filter-btn {
  width: 100% !important;
  padding: 14px 20px !important;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: var(--border-radius-sm) !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-top: 20px !important;
  transition: all 0.3s ease !important;
  font-size: 14px !important;
}

.apply-filter-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 15px rgba(106, 197, 202, 0.4) !important;
}

.apply-filter-btn:active {
  transform: translateY(0) !important;
}

/* Botão específico mobile para categorias */
.mobile-apply-btn {
  background: linear-gradient(135deg, var(--accent-color), #e8894d) !important;
  margin-top: 25px !important;
}

.mobile-apply-btn:hover {
  background: linear-gradient(135deg, #e8894d, var(--accent-color)) !important;
}

/*======================================================================
# ORDENAÇÃO PARA CATEGORIAS
======================================================================*/
.ordenar-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.ordenar-btn {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  padding: 10px 15px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-color);
}

.ordenar-btn:hover {
  background-color: var(--light-bg);
  border-color: var(--primary-color);
}

.ordenar-btn i {
  margin-right: 5px;
}

.ordenar-opcoes {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow);
  min-width: 200px;
  z-index: 100;
  display: none;
  overflow: hidden;
  margin-top: 2px;
}

.ordenar-opcoes.show {
  display: block;
}

.ordenar-opcoes a {
  display: block;
  padding: 10px 15px;
  color: var(--text-color);
  transition: var(--transition);
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
}

.ordenar-opcoes a:last-child {
  border-bottom: none;
}

.ordenar-opcoes a:hover {
  background-color: var(--light-bg);
  color: var(--primary-color);
}

.ordem-atual {
  font-weight: 500;
  color: var(--primary-color);
}

/*======================================================================
# BOTÕES ESPECIALIZADOS PARA CATEGORIAS
======================================================================*/
.btn-comprar i {
  animation: pulse 2s infinite;
}

/* Classe específica para ocultar tamanhos numerados em acessórios */
.acessorios-page .tamanhos .tamanho {
  display: none;
}

.acessorios-page .tamanhos .tamanho-unico {
  display: inline-block;
}

/* Classe específica para ocultar tamanhos numerados em brinquedos */
.brinquedos-page .tamanhos .tamanho {
  display: none;
}

.brinquedos-page .tamanhos .tamanho-unico {
  display: inline-block;
}
