.elementor-1317 .elementor-element.elementor-element-0a601a9{--display:flex;}/* Start custom CSS for html, class: .elementor-element-cd0abaf *//* =============================================== */
/* ESTILOS GERAIS E INFO DA LOJA (SEM ALTERAÇÕES)  */
/* =============================================== */

.loja-aiq {
  font-family: 'Arial', sans-serif;
  background: #f9f9f9;
  color: #333;
  max-width: 100%;
  margin: auto;
  padding-bottom: 2rem;
}

.banner-loja img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 2px solid #eee;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-top: -35px;
}

.logo-loja {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  background: #fff;
}

.info-loja {
  text-align: center;
  margin-top: 0.5rem;
}

.titulo-loja {
  font-size: 1.4rem;
  margin: 0.2rem 0;
}

.avaliacao-loja {
  font-size: 0.95rem;
  margin: 0.3rem 0;
  color: #f5a623;
}

.avaliacao-loja .nota {
  color: #555;
}

.detalhes-loja {
  font-size: 0.85rem;
  color: #555;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.status-loja {
  font-size: 0.9rem;
  font-weight: bold;
  display: block;
}
.status-loja.aberta { color: green; }
.status-loja.fechada { color: red; }
.status-loja.status-checking { color: #777; }


/* ================================================== */
/* MENU DE CATEGORIAS HORIZONTAL (SEM ALTERAÇÕES)     */
/* ================================================== */

.filtro-categorias {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  display: flex;
  overflow-x: auto;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  scroll-snap-type: x mandatory;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
@media (min-width: 768px) {
  .filtro-categorias {
    justify-content: center;
  }
}

.filtro-categorias button {
  flex-shrink: 0;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  background: #ff5722;
}
.filtro-categorias button:hover {
  background: #e64a19;
}


/* ========================================================= */
/* SISTEMA DE ACORDEÃO E PRODUTOS (COM ROLAGEM HORIZONTAL)   */
/* ========================================================= */

/* --- Estilos do Acordeão (Sanfona) --- */
/* Mantidos para a funcionalidade de abrir e fechar */

.scroll-produtos {
    display: none; /* Começa oculto */
    position: relative; /* Necessário para o efeito de sombra */
}

.categoria-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 1rem;
    border-bottom: 1px solid #f0f0f0;
    -webkit-tap-highlight-color: transparent;
}

.categoria-header .titulo-categoria {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.toggle-btn {
    font-size: 2.5em;
    font-weight: 300;
    color: #28a745;
    line-height: 1;
    padding: 0 10px;
}

/* --- Estilos dos Produtos (Rolagem Horizontal) --- */

/* ALTERADO DE VOLTA PARA FLEXBOX E ROLAGEM */
.scroll-produtos ul.products {
  display: flex !important;
  overflow-x: auto;
  gap: 0.75rem;
  scroll-snap-type: x mandatory;
  padding: 1rem; /* Adiciona espaçamento interno */
  margin: 0;
}

/* RE-ADICIONADO: Larguras fixas para os cards funcionarem na rolagem */
.scroll-produtos ul.products li.product {
  flex-shrink: 0; /* Impede que os cards encolham */
  min-width: 30vw; /* Largura de cada card no celular */
  max-width: 30vw;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
  border-radius: 10px;
  border: 1px solid #35a7ae;
  background: #e6f5ff;
  padding: 0.5rem;
  box-sizing: border-box;
}

.scroll-produtos ul.products li.product img {
  height: 90px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.scroll-produtos ul.products li.product .woocommerce-loop-product__title {
  font-size: 0.8rem;
  line-height: 1.3;
  min-height: 0.5rem;
  margin-bottom: 0.5rem;
}

.scroll-produtos ul.products li.product .price {
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.scroll-produtos ul.products li.product .button {
  margin-top: auto;
  font-size: 0.75rem;
  padding: 0.4rem;
  background: #ff5722;
  color: #fff;
  border: none;
  border-radius: 4px;
}
.scroll-produtos ul.products li.product .button:hover {
  background: #e64a19;
}

/* RE-ADICIONADO: Efeito de sombra para indicar que há mais itens para rolar */
.scroll-produtos::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to left, rgba(249, 249, 249, 1), rgba(249, 249, 249, 0));
  pointer-events: none;
  z-index: 10;
}

/* --- Responsividade da Rolagem Horizontal --- */

/* Remove o efeito de sombra em telas grandes onde não precisa rolar */
@media (min-width: 768px) {
  .scroll-produtos::after {
    display: none;
  }
}

/* Ajusta a largura dos cards em telas maiores */
@media (min-width: 1024px) {
  .scroll-produtos ul.products li.product {
    min-width: 15vw; /* Aumenta a quantidade de produtos visíveis */
    max-width: 15vw;
  }
}
/* ========================================================= */
/* ESTILOS PARA A NOVA SEÇÃO DE OFERTAS EM DESTAQUE          */
/* ========================================================= */

.ofertas-destaque {
  background-color: #fff; /* Fundo branco para a seção */
  padding: 0.1rem;
  margin: 0rem 0; /* Espaçamento acima e abaixo */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.titulo-ofertas {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Container que permite a rolagem horizontal */
.container-ofertas-scroll ul.products {
  display: flex !important;
  overflow-x: auto;
  gap: 0.75rem;
  scroll-snap-type: x mandatory;
  padding: 0.5rem; /* Pequeno preenchimento para não cortar as sombras */
  margin: 0;
}

/* Estilo dos cards de produto na seção de ofertas */
.container-ofertas-scroll ul.products li.product {
  flex-shrink: 0;
  min-width: 40vw; /* Largura de cada card no celular */
  max-width: 40vw;
  scroll-snap-align: start;
  /* Reutilizando o estilo visual que você já tem */
  border-radius: 10px;
  border: 1px solid #ff5722; /* Borda laranja para destacar a oferta */
  background: #fff;
  box-shadow: none;
  font-size: 0.8em;
}

/* Ajuste de responsividade para telas maiores */
@media (min-width: 768px) {
  .container-ofertas-scroll ul.products li.product {
    min-width: 30vw;
    max-width: 30vw;
  }
}

@media (min-width: 1024px) {
  .container-ofertas-scroll ul.products li.product {
    min-width: 15vw;
    max-width: 15vw;
  }
}/* End custom CSS */