
/* Estrutura - loja online: caixas automáticas */
.elo-card-group,.elo-comments-group{
  border:1px solid rgba(0,0,0,.1);
  border-radius:14px;
  padding:14px;
  margin:18px 0;
  background:#fff;
  box-shadow:0 4px 18px rgba(0,0,0,.06);
}
.elo-card,.elo-comment-card{
  border:1px solid rgba(0,0,0,.08);
  border-radius:12px;
  padding:14px 16px;
  margin:12px 0;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
}
.elo-card .elo-card-title{
  font-weight:700;
  font-size:1.05rem;
  margin:0 0 8px 0;
  line-height:1.3;
}

/* HOME (NOVIDADES - LOJA / widgets do tema) */
body.home .elo-home-product-card{
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  overflow:hidden;
}

body.home .elo-home-modelos-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  border:2px solid #1f63ff;
  color:#1f63ff;
  font-weight:800;
  letter-spacing:.02em;
  text-decoration:none;
  line-height:1;
  white-space:nowrap;
}

body.home .elo-home-modelos-btn:hover{
  background:rgba(31,99,255,.08);
}

body.home .elo-home-product-card .elo-price-label{
  font-weight:800;
}

.elo-card{
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:18px;
  margin:14px 0;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
}
.elo-card-inner{
  display:flex;
  align-items:center;
  gap:18px;
}
.elo-card-icon{
  width:84px;
  min-width:84px;
  height:84px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.elo-card-emoji{
  font-size:40px;
  line-height:1;
}
.elo-card-content{
  flex:1;
  min-width:0;
}
.elo-card .elo-card-title{
  font-weight:700;
  font-size:1.7rem;
  margin:0 0 8px 0;
  line-height:1.2;
}
.elo-card .elo-card-body{
  color:#6b7280;
  font-size:1.1rem;
  line-height:1.5;
}
.elo-card .elo-card-body > :last-child{
  margin-bottom:0;
}
@media (max-width: 767px){
  .elo-card{
    padding:16px;
  }
  .elo-card-inner{
    gap:14px;
    align-items:flex-start;
  }
  .elo-card-icon{
    width:72px;
    min-width:72px;
    height:72px;
    border-radius:18px;
  }
  .elo-card-emoji{
    font-size:34px;
  }
  .elo-card .elo-card-title{
    font-size:1.35rem;
  }
  .elo-card .elo-card-body{
    font-size:1rem;
  }
}


/* v5 - caixas premium com título em cima e conteúdo por baixo */
.elo-card-group{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  border:0;
  padding:0;
  margin:22px 0;
  background:transparent;
  box-shadow:none;
}
.elo-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:210px;
  padding:22px 22px 20px;
  margin:0;
  border:1px solid rgba(12,18,28,.06);
  border-radius:24px;
  background:#fff;
  box-shadow:0 10px 28px rgba(15,23,42,.06);
  overflow:hidden;
}
.elo-card:before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:4px;
  background:linear-gradient(90deg,#7c3aed 0%, #a855f7 100%);
}
.elo-card-inner{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:14px;
  height:100%;
}
.elo-card-title{
  order:1;
  display:block;
  font-size:clamp(1.1rem,1rem + .5vw,1.5rem) !important;
  line-height:1.2 !important;
  font-weight:800 !important;
  letter-spacing:.01em;
  color:#16181d;
  margin:0 !important;
  text-transform:uppercase;
  word-break:normal;
  overflow-wrap:anywhere;
}
.elo-card-content{
  display:flex;
  flex-direction:column;
  gap:12px;
  min-width:0;
}
.elo-card-body{
  order:2;
  color:#697386 !important;
  font-size:1rem !important;
  line-height:1.7 !important;
}
.elo-card-body p{ margin:0 0 10px; }
.elo-card-body > :last-child{ margin-bottom:0; }
.elo-card-body-wrap{
  display:flex;
  align-items:flex-start;
  gap:14px;
}
.elo-card-icon{
  width:56px;
  min-width:56px;
  height:56px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.3);
}
.elo-card-emoji{
  font-size:28px;
  line-height:1;
}
@media (max-width: 1024px){
  .elo-card-group{ grid-template-columns:1fr; }
  .elo-card{ min-height:auto; }
}


/* v6 - descrição do produto responsiva (imagens e conteúdo dentro das tabs) */
.woocommerce div.product .woocommerce-tabs .panel,
.woocommerce div.product .woocommerce-Tabs-panel,
.woocommerce-tabs .panel.entry-content,
#tab-description,
.woocommerce-Tabs-panel--description{
  max-width:100%;
  overflow-x:hidden;
  box-sizing:border-box;
}

.woocommerce div.product .woocommerce-tabs .panel *,
.woocommerce div.product .woocommerce-Tabs-panel *,
.woocommerce-tabs .panel.entry-content *,
#tab-description *,
.woocommerce-Tabs-panel--description *{
  box-sizing:border-box;
}

.woocommerce div.product .woocommerce-tabs .panel img,
.woocommerce div.product .woocommerce-Tabs-panel img,
.woocommerce-tabs .panel.entry-content img,
#tab-description img,
.woocommerce-Tabs-panel--description img{
  display:block;
  max-width:100% !important;
  width:auto;
  height:auto !important;
  margin-left:auto;
  margin-right:auto;
}

.woocommerce div.product .woocommerce-tabs .panel p img,
.woocommerce div.product .woocommerce-Tabs-panel p img,
.woocommerce-tabs .panel.entry-content p img,
#tab-description p img,
.woocommerce-Tabs-panel--description p img{
  display:block;
}

.woocommerce div.product .woocommerce-tabs .panel table,
.woocommerce div.product .woocommerce-Tabs-panel table,
.woocommerce-tabs .panel.entry-content table,
#tab-description table,
.woocommerce-Tabs-panel--description table{
  display:block;
  width:100%;
  max-width:100%;
  overflow-x:auto;
}

.woocommerce div.product .woocommerce-tabs .panel iframe,
.woocommerce div.product .woocommerce-Tabs-panel iframe,
.woocommerce-tabs .panel.entry-content iframe,
#tab-description iframe,
.woocommerce-Tabs-panel--description iframe{
  max-width:100% !important;
}

@media (max-width: 1024px){
  .woocommerce div.product .woocommerce-tabs .panel img,
  .woocommerce div.product .woocommerce-Tabs-panel img,
  .woocommerce-tabs .panel.entry-content img,
  #tab-description img,
  .woocommerce-Tabs-panel--description img{
    width:100% !important;
    max-width:100% !important;
    height:auto !important;
  }
}


/* v8 - bloco CTT dentro da galeria, por baixo da imagem principal e miniaturas */
.single-product .elo-ctt-gallery-slot{
  width:100%;
  margin:18px 0 24px;
  clear:both;
}
.single-product .elo-ctt-gallery-slot > *{
  width:100%;
  max-width:100%;
}
@media (max-width: 1024px){
  .single-product .elo-ctt-gallery-slot{
    margin:14px 0 20px;
  }
}


/* v1.1.5 - categorias e tags do produto */
.elo-product-terms{
  margin:12px 0 6px;
}
.elo-product-terms__inner{
  display:block;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.elo-product-terms__row,
.elo-product-terms__label{
  display:none !important;
}
.elo-product-terms__chips{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.elo-term-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:24px;
  padding:4px 9px;
  border-radius:999px;
  border:1px solid rgba(17,24,39,.08);
  background:#f7f7f8;
  color:#525866;
  font-size:11px;
  font-weight:600;
  line-height:1;
  text-decoration:none !important;
  transition:background-color .18s ease, color .18s ease, border-color .18s ease;
  box-shadow:none;
}
.elo-term-chip:hover{
  background:#111827;
  color:#fff;
  border-color:#111827;
  transform:none;
  box-shadow:none;
}
.elo-term-chip--cat:before,
.elo-term-chip--tag:before{
  content:'';
  margin:0;
}
@media (max-width: 767px){
  .elo-product-terms{ margin:10px 0 4px; }
  .elo-product-terms__chips{ gap:5px; }
  .elo-term-chip{ font-size:10px; padding:4px 8px; min-height:22px; }
}
