:root{
   --bg:#fff;
   --fg:#1f2937;
  /* slate-800 */
   --muted:#434343;
  /* gray-500 */
   --brand:#16a34a;
  /* green-600 */
   --card:#f9fafb;
  /* gray-50 */
   --border:#e5e7eb;
  /* gray-200 */
   --shadow:0 10px 20px rgba(0,0,0,.06);
   --radius:10px;
}

*{
   box-sizing:border-box;
   margin:0;
   padding: 0;
}
 html,body{
  margin:0;
  padding: 0;
  overflow-x: none !important;
  background:var(--bg);
  color:var(--fg);
  font-family:Poppins,system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif
}

/* ======== GLOBAL STRUCTURE ======== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin: 0;
}
.catalogo{
  background: #FFF;
}

header, footer {
  width: 100%;
}


header{
  background: var(--cor_header);
}
footer {
  background: var(--cor_footer_bg);
  color: var(--cor_footer_texto) !important;
}

footer .text-muted{
  color: var(--cor_footer_texto) !important;
}

.header-3 {
  background: var(--cor_header);
  color: var(--cor_header_texto);
}

.btn-cart{
  background: var(--cor_header_texto) !important;
  color: var(--cor_header) !important;
  border:none;
}
.btn-cart:hover{
  color: var(--cor_header) !important;
}

.social-links a:hover {
  color: var(--cor_header);
}

.header-3 .search-box input {
  border: 2px solid var(--cor_menu_bg);
}

.header-input-search{
  border: 2px solid var(--cor_menu_bg);
}
 .card{
  border:none;
}


h1 { font-size: 1.8rem; }
h2.section-title { font-size: 1.5rem; }
h3.section-title { font-size: 1.2rem; }

.cor_titulo{ color:var(--cor_titulo); }

.bi-color-grid { color: #666; }

/* ===== HEADER 3 STRUCTURE ===== */
.header-3 {
  border-bottom: 1px solid #eee;
  font-family: var(--fonte, system-ui, sans-serif);
  color: var(--cor-header-texto, #333);
}

/* ----- Top Bar ----- */
.header-3 .top-bar {
  display: flex;
}
.header-3 .top-bar .container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 20px;
  font-size: 0.9rem;
}


.top-bar a { color: var(--topbar_cor_texto); }

.top-bar {
  padding: 4px 0px;
  background: var(--topbar_bg);
  color: var(--topbar_cor_texto);
}
.topbar-nav{
  color: var(--topbar_cor_texto);
}

.header-3 .top-bar .container {
  padding: 0px !important;
}
.topbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* container fixo */
.topbar-swiper {
  width: 560px;
  overflow: hidden;
}

/* cada slide */
.topbar-swiper .swiper-slide {
  text-align: center;
  white-space: nowrap;
}

/* botões */
.topbar-nav {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .topbar-swiper {
    width: 260px;
  }

  .topbar-nav {
    display: none;
  }
}


.product-attributes h1{
  color: var(--produto_titulo_cor);
}

.header-3 .hamburger, .store-name, .store-tagline {
  color: var(--cor_header_texto);
}


.social-links a i {
  font-size: 18px;
  margin-right: 5px;
}
.social-links a:hover { opacity: 0.8; }

/* ----- Main Bar (logo + title + actions) ----- */
.main-bar .container {
  padding: 8px 5px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header-logo{
  min-width: 130px;
}

.header-3 .logo img {
  max-height: 90px !important;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  box-shadow: 0 2px 3px rgba(0,0,0,0.15);
}

.header-3 .title {
  flex: 1;
  padding: 5px 10px;
  margin-left: 30px;
  min-width: 280px;
  word-wrap: break-word;
}
.header-3 .title h1 { font-size: 1.6rem; }
.header-3 .title span { display: block; font-size: 0.9rem; }

/* ----- Actions (busca + botões + hamburguer) ----- */
.header-3 .actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 1;
  margin-left: 210px;
}
.header-3 .actions .search-box {
  flex-grow: 1;
  position: relative;
}
.header-3 .search-box input {
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  border-radius: 12px;
}
.header-3 .search-box button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
}
.header-3 .hamburger {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
}

/* Barra de categorias responsiva */
.bottom-bar .categories {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  list-style: none;
  gap: 0.75rem;
  scrollbar-width: none; /* Esconde barra no Firefox */
}
.bottom-bar .categories::-webkit-scrollbar {
  display: none; /* Esconde barra no Chrome/Safari */
}
ul{
  padding: 0px !important;
}
.bottom-bar .categories li {
  flex: 0 0 auto;
}

.categories {
  scroll-snap-type: x mandatory;
}

.categories li {
  scroll-snap-align: start;
}


.bottom-bar .categories a {
  display: inline-block;
  background: #f7f7f7;
  color: #333;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap; /* Impede quebra de texto */
}

.bottom-bar .categories {
  scroll-snap-type: x mandatory;
}

.bottom-bar .categories li {
  scroll-snap-align: start;
}

.menu-item.active {
  background: var(--cor_menu_bg_link_hover);
  color: var(--cor_menu_link_hover);
  transform: scale(1.05);
}

.menu-item:active {
  transform: scale(0.95);
}

.menu-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.cs-bottom-bar{
  padding: 10px;
}

.menu-tradicional .categories a {
  padding: 10px 15px;
  transition: 0.2s;
  font-weight: 600;
  border: none !important;
  border-radius: none !important;
}

.menu-tradicional .categories a:hover {
  transform: translateY(-2px);
  background: rgba(0,0,0,0.05);
}

.store-identity {
  line-height: 1.2;
}

.store-name {
  font-size: 1.4rem;
  font-weight: 600;
}

.store-slug {
  font-size: 0.85rem;
  color: #888;
}
.store-tagline {
  font-size: 0.8rem;
}

.search-wrapper {
  width: 100%;
}

.search-form {
  position: relative;
}

.search-form input {
  height: 48px;
  border-radius: 30px;
  padding-left: 20px;
  padding-right: 52px;
  background-color: #fff;
  transition: all .25s ease;
  font-size: 0.95rem;
}

.search-form input::placeholder {
  color: #aaa;
}

.search-form input:focus {
  border-color: #6bb8a6;
  box-shadow: 0 0 0 4px rgba(107, 184, 166, 0.15);
}

.search-form button {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #777;
  font-size: 18px;
  cursor: pointer;
}

.search-form button:hover {
  color: #333;
}

/* Sugestões */
.search-suggestions {
  gap: 14px;
  margin-top: 8px;
  padding-left: 14px;
  font-size: 0.8rem;
  color: #888;
}

.search-suggestions span {
  cursor: pointer;
  white-space: nowrap;
}

.search-suggestions span:hover {
  text-decoration: underline;
}


.btn-add-carrinho{
  background: var(--card_cor_buttom) !important;
  color: var(--card_cor_buttom_text) !important;
  border-radius: 20px;
  border:1px solid var(--card_cor_buttom_hover);
  font-weight: bold;
}
.btn-add-carrinho:hover{
  background: var(--card_cor_buttom_hover) !important;
  color: var(--card_cor_buttom_text_hover) !important;
}


.is_destaque {
  padding-top: 10px;
}
.is_promocao {
  padding-top: 10px;
}

.is_related{
  background: var(--topbar_bg);
  color: var(--topbar_cor_texto);
}

.produto-lista-item {
  padding: 10px;
  background: #FFF;
  gap: 10px;
  border: 1px solid #f7f7f7;
  border-radius: 20px;
  margin-bottom: 5px;
}
.produto-lista-item:hover{
  background: #F7F7F7;
  border: 1px solid #eee;
  border-radius: 20px;
}

.produto-lista-img {
  width: 100px !important;
  height: 100px !important;
  object-fit: cover;
  border-radius: 8px;
}

.produto-lista-info h4 {
  font-size: 16px;
  margin: 0;
}

.produto-lista-acoes {
  display: flex;
  align-items: start;
}

.page-produto {
  background: #F9F9F9;
  padding: 5px;
}
.container-produto {
  padding: 10px 20px;
}


.is_related{
  padding: 8px 20px;
}

.is_related #containerProdutos {

  display: flex;
  flex-wrap: wrap;
  gap: 16px;

  justify-content: center; /* 👈 centraliza na horizontal */
}

.product-title h2{
  color: var(--produto_titulo_cor);
}


@media (max-width: 768px) {
  .produto-lista-img {
    width: 75px !important;
    height: 75px !important;
  }
  .page-produto {
    background: #FFF;
    padding: 1px;
  }
  .product-title{
    margin-top: 20px;
  }
}

.btn-seguir{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 12px;
  font-size:14px;
  border-radius:8px;
  border:1px solid rgba(0,0,0,0.15);
  background: var(--cor_menu_bg_link) ;
  color: var(--cor_menu);
  cursor:pointer;
  transition:all .2s ease;
}

.btn-seguir:hover{
  color: #FFF;
}

.btn-seguir .icon{
  font-size:16px;
}



.cat-item{
  padding:3px 0;
  display:flex;
}
.cat-item a{
  color: var(--cor_header_texto) !important;
}

.nivel-0{
  font-weight:600;
  color: #000 !important;
}

.nivel-1{
  padding-left:15px;
  font-size:0.95rem;
  font-weight:normal;
  color:#555 !important;
}

.nivel-2{
  padding-left:30px;
  font-size:0.9rem;
  font-weight:normal;
  color:#777 !important;
}

.cat-right{
  display:flex;
  align-items:center;
  gap:6px;
}

.cat-count{
  font-size:12px;
  color:#999;
}

.cat-arrow{
  font-size:12px;
  color:#bbb;
}

.active-cat{
  color:#000;
  font-weight:700;
}





/* ===== RESPONSIVIDADE ===== */

/* Desktop */
@media (min-width: 992px) {
  .main-bar .container { flex-wrap: nowrap; }
  .main-bar .title span:last-child {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* Mobile */
@media (max-width: 991px) {
  .main-bar .logo, .main-bar .title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .main-bar .actions {
    width: 100%;
    justify-content: flex-end;
    margin-top: 0.5rem;
    margin-left: 20px;
  }
  .header-3 .logo img {
    max-height: 80px !important;
  }
  .bottom-barxxx { display: none !important; }
  .header-3 .title { text-align: center; }
}

/* Pequenos ajustes globais */
.btn-info {
  padding: 4px 8px;
  background: #34acc1;
  color: #000;
  min-width: 50px !important;
}
.price-de { color: #666; font-size: 14px; text-decoration: line-through; display:block; }

a{
  color:inherit;
  text-decoration:none
}
img{
  display:block
}

/* Geral */
.container{
  --bs-gutter-x: 0.4rem !important;
}

.home-container{
  padding: 5px;
  margin:0px auto;
}
.home-container img{
  width: 100%;
  border-radius: 15px;
}



 .buttons{
   margin-left: 50px;
   display:flex;
   align-items:center;
   justify-content:center;
}
 .title{
  display:flex;
  flex-direction:column
}
 .title h1{
  font-size:1.25rem;
  line-height:1.1;
  margin:0
}
 .title span{
  font-size:.9rem;
}
 .header-ctaxxx{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 10px;
}

 .btn.brand, .btn-whats{
  background:var(--brand);
  border-color:#21C65E;
  color:#fff;
}
.btn.brand:hover, .btn-whats:hover{
  background:#097431;
  border-color:var(--brand);
  color:#fff;
}

 .tagsxxx{
   margin:10px auto;
   text-align: center;
}
 .btn-tagxxx{
   background: #CB7A7A;
   color: #FFF;
   border-radius:10px;
   padding:5px 10px;
}
/* Grid */
 .section-titlexxx{
  margin:5px 4px 14px;
  font-size:1.6rem;
}

.grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr); /* mobile */
}

.list{
  display: grid;
  max-width: 1040px;
  margin: 0px auto;
  grid-template-rows: repeat(1, 1fr); /* mobile */
}


/* Tablet */
@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

/* Desktop */
@media (min-width: 1200px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

 .card{
  border-radius:var(--radius);
  overflow:hidden;
  transition:.2s transform,.2s box-shadow;
  cursor:pointer;
  background:#FFFFFF;
}
 .card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow)
}
 .thumb{
  aspect-ratio:1/1;
  object-fit:cover;
}
 .info{
  padding:8px 5px;
}
 .produtoNome{
  text-align: left;
  font-weight:normal;
  margin:0 0 4px;
  font-size:1rem
}
 .price{
  font-weight:600;
}
.descricao{
  margin: 10px 0px;
}

.btn-add-carrinho{
  border-radius: 20px;
}
.btn-add-carrinho:hover{ 
}
 .tag{
  display:inline-block;
  margin-left:8px;
  padding:2px 8px;
  border-radius:999px;
  border:1px dashed var(--border);
  font-size:.75rem;
  color:var(--muted);
   background: #FFF;
}
 .section {
   display: flex;
   justify-content: space-between;
   align-items: center;
}
 .section-title {
   margin: 14px 0px;
   font-size: 1.6rem;
}
 .section-all {
   display: flex;
   align-items: center;
   gap: 4px;
  /* espaço entre texto e ícone */
   text-decoration: none;
   color: #333;
   font-size: 0.9rem;
}

.aside{
  background: #FFF;
  margin: 5px;
}
.pt10px{
  padding-top: 10px;
}

.aside a{
    font-size: 14px;
    font-weight: 500;
}
.aside a:hover{
    color: #000;
}

.aside label{
  font-size: 14px;
  font-weight: 500;
}


/* Modal */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  display:none;
  place-items:center;
  padding:5px;
  z-index:50
}
 .overlay.open{
  display:grid
}

 .desc{
  color:var(--muted);
  margin:8px 0 14px;
  line-height:1.5
}
 .modal-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap
}
 .close{
  margin-left:auto
}
/* Footer */
 footer{
  color:var(--muted);
  text-align:center;
  padding: 15px;
  font-size: 14px;
}

.footer-logo{
      max-width: 80px;
      border-radius: 50%;
}

footer a{
    font-size: 14px;
    margin: 6px;
}
footer a:hover{
  text-decoration: underline !important;
  font-weight: bold;
}

.footer i{
  font-size: 20px !important;
  color: #000;
}
.footer i:hover{
  color: #FFF;
}

.border-top-v1{
  border-top: 1px solid #FFF;
}
.feito-com{
  color: #315B8D;
  font-weight: 600;
}

.redes-sociais a{
  margin: 0;
  padding: 0;
}

.redes-sociais a i{
  color: #FFF;
  font-size: 24px !important;
}


 @media (max-width: 767px){

  .container-fluid{
  padding: 3px !important; 
}

.clear-style {
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
}

  .product-footer{
    /*margin-bottom: 55px; */
  }

  .header-3 .logo img {
    max-height: 60px !important;
  }
}


.text-parcelamento{
  font-size: 12px;
  color: #666;
}



/* ====== ESTILO GERAL DAS SEÇÕES ====== */
.section-title {
  font-weight: 700;
  font-size: 1.8rem;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 1.5rem 0 1.5rem;
  color: #222;
}

/* ====== LINHA DECORATIVA ABAIXO DO TÍTULO ====== */
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff7a00, #ffb400);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ====== VERSÃO COLORIDA OPCIONAL POR SEÇÃO ====== */
.section-title.promocoes::after {
  background: linear-gradient(90deg, #ff0000, #ff6a00);
}
.section-title.lancamentos::after {
  background: linear-gradient(90deg, #007bff, #00c6ff);
}
.section-title.depoimentos::after {
  background: linear-gradient(90deg, #00b894, #55efc4);
}
.section-title.categoria::after {
  background: linear-gradient(90deg, #6c5ce7, #a29bfe);
}

/* ====== TÍTULOS PEQUENOS PARA MOBILE ====== */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.4rem;
  }
}


.pwa-banner {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    padding: 12px 16px;
    width: calc(100% - 30px);
    max-width: 420px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.pwa-banner.show {
    opacity: 1;
    pointer-events: auto;
}

.pwa-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pwa-banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

.pwa-banner-text strong {
    font-size: 16px;
    display: block;
}

.pwa-banner-text small {
    color: #555;
    font-size: 13px;
}

.pwa-button {
    background: #4e73df;
    border: none;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.pwa-close {
    font-size: 20px;
    cursor: pointer;
    margin-left: 6px;
    opacity: .6;
}

.hidden {
    display: none;
}


.modal-body label{
  font-size: 14px;
}

.offcanvas-body label{
  font-size: 14px;
}
#itensCarrinho{
  font-size: 14px;
}


.cattalogo-whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 9999;
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
  transition: transform .2s ease, box-shadow .2s ease;
}

.cattalogo-whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 22px rgba(0,0,0,.3);
}


.swal2-container {
  z-index: 9000 !important;
}

.loading-overlay {
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.7);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
}




/* --- Stories de categoria --- */
.category-item {
  flex: 0 0 auto;
  text-align: center;
  min-width: 110px; /* tamanho fixo pra alinhar */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #f08a24;
  padding: 3px;
  background: white;
  transition: transform 0.3s ease;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.category-name {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.4rem;
  color: #333;
  white-space: nowrap;
}

.category-name a{
  padding: 4px 8px;
  border-radius: 15px;
  font-weight: 600;
}

.category-name a:hover{
  font-weight: bold;
}

.category-item:hover .category-img {
  transform: scale(1.05);
  border-color: #ff9800;
  font-weight: bold;
}

.category-item:hover{
  font-weight: bold;
}

/* --- Campo de busca --- */
.category-search input {
  min-width: 220px;
}

.btn-brand {
  background-color: #f08a24;
  border: none;
}

.btn-brand:hover {
  background-color: #e27d15;
}

/* --- Mobile --- */
@media (max-width: 768px) {

.category-item {
  margin: 0px 3px 0px 0px;
}

  .d-flex.flex-wrap.align-items-center.justify-content-between {
    flex-direction: column;
    align-items: stretch;
  }

.category-stories {
  display: flex;
  flex-wrap: nowrap;        /* NÃO quebra linha */
  overflow-x: auto;         /* ativa scroll horizontal */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* scroll suave no iOS */
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 5px;
}

.category-stories::-webkit-scrollbar {
  display: none; /* opcional: esconde scrollbar */
}

.category-item {
  flex: 0 0 auto; /* impede os itens de encolher/quebrar */
  scroll-snap-align: start;
}

  .category-search {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .category-search input {
    flex: 1;
  }
}


  .btn-grid{
    background: #FFF;
    border: #FFF;
  }
  .btn-grid:hover{
    background: #FFF;
    border: #FFF;
  }
  .bi-grid{
    color: #CCC;
    font-size: 20px;
    margin: 0px;
    padding: 1px 4px;
  }
  .bi-grid:hover{
    color: #666;
  }
  .tools-grid .active .bi-grid{
    background: #FFF !important;
    color: #34acc1 !important;
  }
  .filtros-box{
    font-size: 14px;
  }

.offcanvas {
  z-index: 20000 !important;
}


/*PAGINA PRODUTO */

:root {
  --orange: hsl(26, 100%, 55%);
  --pale-orange: hsl(25, 100%, 94%);
  --very-dark-blue: hsl(220, 13%, 13%);
  --dark-grayish-blue: hsl(219, 9%, 45%);
  --grayish-blue: hsl(220, 14%, 75%);
  --light-grayish-blue: hsl(223, 64%, 98%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --black-with-opacity: hsla(0, 0%, 0%, 0.75);
}

.page-produto .container{
  max-width: 1100px;
}

.carousel-item img{
  border-radius: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

    .preco-final {
      font-size: 1.5rem;
      font-weight: bold;
      color: #d9534f;
    }
    .preco-antigo {
      font-size: 1rem;
      color: #888;
      text-decoration: line-through;
      margin-right: 10px;
    }
    .box-produto {
      border: 1px solid #eee;
      padding: 20px;
      background: #fff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .btn-whats {
      background-color: #25d366;
      color: #fff;
    }
    .btn-whats:hover {
      background-color: #1ebe57;
      color: #fff;
    }



    .product {
  max-width: 500px;
  height: 500px;
}

/* layout lado a lado */
.product {
  display: flex;
}

/* THUMBS (ESQUERDA) */
.mySwiper {
  width: 70px; /* 👈 largura das miniaturas */
  height: 100%;
  overflow-y: auto;
}

.mySwiper .swiper-wrapper {
  flex-direction: column; /* 👈 vertical */
}

.mySwiper .swiper-slide {
  width: 100%;
  height: 70px;
  opacity: 0.4;
  cursor: pointer;
  margin:2px 0px;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #000;
}

/* IMAGEM GRANDE */
.mySwiper2 {
  flex: 1;
  height: 100%;
}

/* imagens */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mySwiper .swiper-slide:hover {
  opacity: 1;
}
.swiper-button-next, .swiper-button-prev {
    color: #000 !important;
}



@media (max-width: 767px) {
  .container-produto {
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
  }
}

nav{
  padding: 3px 0px;
  font-size: 14px;
}

.product-attributes {
  background: #fff;
  font-size: 0.95rem;
  color: #666;
}
.product-attributes .atr-val {
  border-bottom: 1px solid #eee;
  padding: 6px 0;
}
.product-attributes .d-flex:last-child {
  border-bottom: none;
}

.inner-produtoxxx{
  padding: 8px 12px;
}
.attributes-bb{
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 5px;
  font-size: 24px;
}
.modal-dialog {
  margin: auto; /* centraliza horizontalmente */
  max-width: 600px; /* controla largura, se quiser */
}
.btn-love{
  font-size: 22px;
}
.btn-love:hover{
  color: red;
}
.linkAvaliacao{
  font-size: 14px;
  color: #0D6EFD;
}
/* Esconde o desktop no mobile */
#cardProdutoDesktop {
  display: none;
}

/* Esconde o mobile no desktop */
#cardProdutoMobile {
  display: block;
}

/* A partir de 768px, inverte */
@media (min-width: 768px) {
  #cardProdutoDesktop {
    display: block;
  }
  #cardProdutoMobile {
    display: none;
  }
}


.product-page{
  margin-top: 10px;
}


.product-page {
  display: flex;
}

@media (max-width: 767px){
  .product-attributes{
    border: none !important;
    padding: 0px !important;
  }
  .page-produto {
    padding: 0px;
  }

}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.payment-icons img {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
}

.form-check:hover {
  background: #f8f9fa;
  border-radius: 6px;
}

.review-item {
    font-size: 14px;
}

.review-item strong {
    font-size: 15px;
}

.progress {
    background-color: #eee;
    border-radius: 10px;
}

.progress-bar {
    border-radius: 10px;
}

.como-funciona-box span {
  font-size: 14px;
}

.como-funciona-box i {
  font-size: 18px;
  margin-top: -2px;
}

.avatar-review {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eee;
    color: #555;
    font-weight: bold;
    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-outline-warning {
  border: 1px solid #ffc107;
  color: #b68900;
  background: rgba(255, 193, 7, 0.08);
}
/* 🔴 DANGER */
.badge-outline-danger {
  border: 1px solid #dc3545;
  color: #b02a37;
  background: rgba(220, 53, 69, 0.08);
}

/* 🔵 PRIMARY */
.badge-outline-primary {
  border: 1px solid #0d6efd;
  color: #0a58ca;
  background: rgba(13, 110, 253, 0.08);
}

/* 🟢 SUCCESS */
.badge-outline-success {
  border: 1px solid #198754;
  color: #146c43;
  background: rgba(25, 135, 84, 0.08);
}

/* 🔵 INFO */
.badge-outline-info {
  border: 1px solid #0dcaf0;
  color: #087990;
  background: rgba(13, 202, 240, 0.08);
}


.badge-outline-warning:hover {
  background: #ffc107;
  color: #000;
}
.badge-outline-danger:hover {
  background: #dc3545;
  color: #fff;
}

.badge-outline-primary:hover {
  background: #0d6efd;
  color: #fff;
}

.badge-outline-success:hover {
  background: #198754;
  color: #fff;
}

.badge-outline-info:hover {
  background: #0dcaf0;
  color: #fff;
}

.props-produto{
  margin: 0px;
  color: #666;
}