/* ============================================
   LOJA - GOC Brasil Visual Pattern
   ============================================ */

/* Hero Section */
.lojaHero {
  position: relative;
  width: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, #3D2B1F 0%, #2a1d15 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.lojaHero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23C5A572" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
  background-size: 100px 100px;
  opacity: 0.3;
}

.lojaHeroContent {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.lojaTag {
  display: inline-block;
  background: linear-gradient(135deg, #C5A572 0%, #a88a5a 100%);
  color: #3D2B1F;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.lojaHeroContent h1 {
  color: white;
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  margin: 0 0 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.lojaHeroContent p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Content Section */
.lojaSection {
  width: 100%;
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  background-color: #f8f7f5;
  min-height: 60vh;
}

.lojaContainer {
  max-width: 1400px;
  width: 100%;
  padding: 0 2rem;
}

/* Categories */
.lojaCategorias {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.lojaCatLink {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  background: white;
  border: 1px solid rgba(197, 165, 114, 0.2);
  border-radius: 2rem;
  text-decoration: none;
  color: #3D2B1F;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.lojaCatLink:hover,
.lojaCatLink.active {
  background: linear-gradient(135deg, #C5A572 0%, #a88a5a 100%);
  color: #3D2B1F;
  border-color: #C5A572;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

.lojaCatCount {
  background: rgba(61, 43, 31, 0.1);
  padding: 2px 8px;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.lojaCatLink.active .lojaCatCount {
  background: rgba(61, 43, 31, 0.2);
}

/* Search */
.lojaSearch {
  display: flex;
  max-width: 500px;
  margin-bottom: 2.5rem;
  background: white;
  border: 1px solid rgba(197, 165, 114, 0.2);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
}

.lojaSearch:focus-within {
  box-shadow: 0 4px 20px rgba(197, 165, 114, 0.2);
  border-color: rgba(197, 165, 114, 0.4);
}

.lojaSearch input {
  flex: 1;
  border: none;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  outline: none;
  color: #3D2B1F;
  background: transparent;
}

.lojaSearch input::placeholder {
  color: #999;
}

.lojaSearch button {
  background: linear-gradient(135deg, #C5A572 0%, #a88a5a 100%);
  color: #3D2B1F;
  border: none;
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  transition: background 0.3s;
}

.lojaSearch button:hover {
  background: linear-gradient(135deg, #d4b882 0%, #C5A572 100%);
}

/* Section Headers */
.lojaDestaque h2,
.lojaTodosProdutos h2 {
  font-family: 'Cinzel', serif;
  color: #3D2B1F;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lojaDestaque h2::after,
.lojaTodosProdutos h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(197, 165, 114, 0.4), transparent);
}

.lojaDestaque {
  margin-bottom: 3rem;
}

/* Product Grid */
.lojaProdutoGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}

/* Product Card */
.lojaProdutoCard {
  position: relative;
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(197, 165, 114, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lojaProdutoCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.lojaProdutoCard.destaque {
  border-color: rgba(197, 165, 114, 0.4);
}

.lojaProdutoImagem {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f0ea 0%, #ebe5dc 100%);
}

.lojaProdutoImagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lojaProdutoCard:hover .lojaProdutoImagem img {
  transform: scale(1.08);
}

.lojaProdutoEsgotado {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(61, 43, 31, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 2;
}

.lojaProdutoDesconto {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--cor-acento);
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
}

.lojaProdutoInfo {
  padding: 1.25rem;
}

.lojaProdutoCategoria {
  font-size: 0.75rem;
  color: #C5A572;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.lojaProdutoInfo h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: #3D2B1F;
  margin: 0.5rem 0;
  line-height: 1.3;
}

.lojaProdutoPreco {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.precoAntigo {
  color: #999;
  text-decoration: line-through;
  font-size: 0.85rem;
}

.precoAtual {
  color: var(--cor-acento);
  font-weight: 700;
  font-size: 1.15rem;
}

/* Empty State */
.lojaVazio {
  background: white;
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(197, 165, 114, 0.1);
}

.lojaVazioIcon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #3D2B1F 0%, #5a4030 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.lojaVazioIcon i {
  font-size: 2.5rem;
  color: #C5A572;
}

.lojaVazio h3 {
  color: #3D2B1F;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.lojaVazio p {
  color: #666;
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Pagination */
.lojaPaginacao {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.lojaPaginacao .pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.lojaPaginacao .page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  background: white;
  border: 1px solid rgba(197, 165, 114, 0.2);
  border-radius: 0.5rem;
  text-decoration: none;
  color: #3D2B1F;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.lojaPaginacao .page-item .page-link:hover {
  background: #C5A572;
  color: #3D2B1F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 165, 114, 0.3);
}

.lojaPaginacao .page-item.active .page-link {
  background: #C5A572;
  color: #3D2B1F;
  border-color: #C5A572;
}

/* Em Breve - Hero */
.lojaEmBreveHero {
  width: 100%;
  background: linear-gradient(135deg, #3D2B1F 0%, #24231f 100%);
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.lojaEmBreveHero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23C5A572" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
  background-size: 100px 100px;
  opacity: 0.3;
}

.lojaEmBreveHeroContent {
  max-width: 800px;
  text-align: center;
  z-index: 1;
}

.lojaEmBreveTag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197, 165, 114, 0.2);
  color: #C5A572;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  border: 1px solid rgba(197, 165, 114, 0.3);
}

.lojaEmBreveHeroContent h1 {
  color: white;
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.lojaEmBreveHeroContent h1::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #C5A572, #8B1A1A);
  margin: 1.25rem auto 0;
  border-radius: 2px;
}

.lojaEmBreveHeroContent p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Em Breve - Content */
.lojaEmBreveSection {
  width: 100%;
  padding: 4rem 0;
  background: #f8f7f5;
}

.lojaEmBreveContainer {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.lojaEmBreveCard {
  background: white;
  border-radius: 1.25rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(197, 165, 114, 0.15);
}

.lojaEmBreveIcon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3D2B1F 0%, #5a4030 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #C5A572;
}

.lojaEmBreveCard h2 {
  font-family: 'Cinzel', serif;
  color: #3D2B1F;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.lojaEmBreveCard > p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.lojaEmBreveItems {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.lojaEmBreveItem {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(197, 165, 114, 0.1);
  color: #3D2B1F;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(197, 165, 114, 0.2);
}

.lojaEmBreveItem i {
  color: #C5A572;
  font-size: 0.85rem;
}

.lojaEmBreveBtn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: white;
  color: #3D2B1F;
  text-decoration: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(197, 165, 114, 0.25);
  transition: all 0.3s ease;
}

.lojaEmBreveBtn:hover {
  background: linear-gradient(135deg, #C5A572 0%, #a88a5a 100%);
  color: #3D2B1F;
  border-color: #C5A572;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 165, 114, 0.3);
}

@media (max-width: 768px) {
  .lojaEmBreveHero {
    padding: 3.5rem 1.5rem;
  }

  .lojaEmBreveHeroContent h1 {
    font-size: 2.25rem;
  }

  .lojaEmBreveCard {
    padding: 2rem 1.5rem;
  }

  .lojaEmBreveItems {
    gap: 0.5rem;
  }

  .lojaEmBreveItem {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .lojaEmBreveHeroContent h1 {
    font-size: 1.85rem;
  }

  .lojaEmBreveCard h2 {
    font-size: 1.25rem;
  }
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */

/* Product Detail Hero */
.lojaProdutoHero {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #3D2B1F 0%, #2a1d15 100%);
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.lojaProdutoHero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23C5A572" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
  background-size: 100px 100px;
  opacity: 0.3;
}

.lojaProdutoBreadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  max-width: 1100px;
  width: 100%;
}

.lojaProdutoBreadcrumb a {
  color: #C5A572;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.lojaProdutoBreadcrumb a:hover {
  color: #d4b882;
}

.lojaProdutoBreadcrumb .fa-chevron-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

.lojaProdutoBreadcrumb span {
  color: rgba(255, 255, 255, 0.8);
}

/* Product Detail Content */
.lojaProdutoDetalhe {
  width: 100%;
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  background-color: #f8f7f5;
}

.lojaProdutoDetalheContainer {
  max-width: 1100px;
  width: 100%;
  padding: 0 2rem;
}

.lojaProdutoConteudo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* Image Gallery */
.lojaProdutoGaleria {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.galeriaImagemPrincipal {
  border-radius: 1.25rem;
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(197, 165, 114, 0.1);
}

.galeriaImagemPrincipal img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
}

.galeriaThumbnails {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.galeriaThumbnail {
  width: 60px;
  height: 60px;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 0;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.galeriaThumbnail.active,
.galeriaThumbnail:hover {
  border-color: #C5A572;
  box-shadow: 0 4px 12px rgba(197, 165, 114, 0.3);
}

.galeriaThumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info Detail */
.lojaProdutoInfoDetalhe {
  padding-top: 0;
}

.lojaProdutoInfoDetalhe .lojaProdutoCategoria {
  font-size: 0.8rem;
}

.lojaProdutoInfoDetalhe h1 {
  font-family: 'Cinzel', serif;
  color: #3D2B1F;
  font-size: 1.8rem;
  margin: 0.75rem 0 1.25rem;
  line-height: 1.3;
}

.lojaProdutoPrecoDetalhe {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(197, 165, 114, 0.1);
}

.lojaProdutoPrecoDetalhe .precoAtual {
  font-size: 2rem;
}

.precoDesconto {
  background: var(--cor-acento);
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.lojaProdutoEsgotadoMsg {
  background: rgba(139, 26, 26, 0.08);
  color: var(--cor-acento);
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(139, 26, 26, 0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Variations */
.lojaProdutoVariacao {
  margin-bottom: 1.5rem;
}

.lojaProdutoVariacao label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #3D2B1F;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.variacaoOpcoes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.variacaoBtn {
  padding: 0.6rem 1.25rem;
  border: 2px solid rgba(197, 165, 114, 0.2);
  border-radius: 0.75rem;
  background: white;
  cursor: pointer;
  font-size: 0.9rem;
  color: #3D2B1F;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.variacaoBtn:hover:not(:disabled) {
  border-color: #C5A572;
  transform: translateY(-2px);
}

.variacaoBtn.selected {
  border-color: #C5A572;
  background: linear-gradient(135deg, #C5A572 0%, #a88a5a 100%);
  color: #3D2B1F;
}

.variacaoBtn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Quantity */
.lojaProdutoQuantidade {
  margin-bottom: 1.5rem;
}

.lojaProdutoQuantidade label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #3D2B1F;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quantidadeControle {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid rgba(197, 165, 114, 0.2);
  border-radius: 0.75rem;
  width: fit-content;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.quantidadeControle button {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.2rem;
  color: #3D2B1F;
  transition: background 0.3s;
}

.quantidadeControle button:hover {
  background: rgba(197, 165, 114, 0.15);
}

.quantidadeControle input {
  width: 50px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid rgba(197, 165, 114, 0.2);
  border-right: 1px solid rgba(197, 165, 114, 0.2);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  color: #3D2B1F;
  background: transparent;
}

/* Add to Cart Button */
.lojaBtnComprar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #C5A572 0%, #a88a5a 100%);
  color: #3D2B1F;
  border: none;
  border-radius: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

.lojaBtnComprar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 165, 114, 0.4);
  background: linear-gradient(135deg, #d4b882 0%, #C5A572 100%);
}

/* Description & Specs */
.lojaProdutoDescricao,
.lojaProdutoEspecificacoes {
  margin-top: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(197, 165, 114, 0.1);
}

.lojaProdutoDescricao h3,
.lojaProdutoEspecificacoes h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: #3D2B1F;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lojaProdutoDescricao div {
  color: #555;
  line-height: 1.8;
}

.lojaProdutoEspecificacoes ul {
  list-style: none;
  padding: 0;
}

.lojaProdutoEspecificacoes li {
  padding: 0.6rem 0;
  color: #555;
  border-bottom: 1px solid rgba(197, 165, 114, 0.1);
  display: flex;
  justify-content: space-between;
}

.lojaProdutoEspecificacoes li:last-child {
  border-bottom: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .lojaProdutoGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .lojaHero {
    min-height: 250px;
    padding: 3rem 1.5rem;
  }

  .lojaHeroContent h1 {
    font-size: 2rem;
  }

  .lojaHeroContent p {
    font-size: 1rem;
  }

  .lojaSection {
    padding: 2rem 0;
  }

  .lojaContainer {
    padding: 0 1rem;
  }

  .lojaProdutoGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .lojaProdutoConteudo {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lojaProdutoGaleria {
    position: static;
  }

  .lojaProdutoInfoDetalhe h1 {
    font-size: 1.4rem;
  }

  .lojaProdutoPrecoDetalhe .precoAtual {
    font-size: 1.6rem;
  }

  .lojaProdutoHero {
    padding: 1.5rem;
  }

  .lojaProdutoBreadcrumb {
    font-size: 0.85rem;
  }

  .lojaCategorias {
    gap: 0.5rem;
  }

  .lojaCatLink {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .lojaHero {
    min-height: 200px;
    padding: 2rem 1rem;
  }

  .lojaHeroContent h1 {
    font-size: 1.75rem;
  }

  .lojaTag {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .lojaProdutoGrid {
    grid-template-columns: 1fr;
  }

  .lojaSearch {
    max-width: 100%;
  }

  .lojaProdutoInfoDetalhe h1 {
    font-size: 1.3rem;
  }
}
