/**
 * Theme Name: Coração de Educador Child
 * File Name: product-page.css
 * Description: CSS final unificado – Produto, CTA e Mobile Head
 * Version: FINAL ESTÁVEL
 */

/* ===========================================================
   🎨 VARIÁVEIS
   =========================================================== */

:root {
  --ce-accent: #fe38e3;
  --ce-accent-soft: rgba(254,56,227,.25);
  --ce-text: #222;
  --ce-text-soft: #666;
  --ce-border: #eee;
	--ce-amarelo-limao: #e8fa57
}

/* ===========================================================
   🧹 LIMPEZA GLOBAL
   =========================================================== */

.woobt-qty-num { display: none !important; }
.woobt-title-inner span:first-child { font-weight: bold; }

.single-product .page-title.shop-page-title.product-page-title,
.woocommerce-breadcrumb.breadcrumbs,
.single-product .product_meta,
.single-product .posted_in {
  display: none;
}

.category-page-row { padding-top: 0; }

/* ===========================================================
   🍞 BREADCRUMB (DESKTOP)
   =========================================================== */

.pi-breadcrumb {
  font-size: 13px;
  color: #888;
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.pi-breadcrumb a {
  color: var(--ce-text);
  font-weight: 500;
  text-decoration: none;
	margin-bottom: 10px;
}

.pi-breadcrumb span { color: #bbb; }

/* ===========================================================
   🏷️ TÍTULO DO PRODUTO (DESKTOP)
   =========================================================== */

.product_title.entry-title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  color: #111;
  margin-bottom: 12px;
  position: relative;
}

.product_title.entry-title::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 10px;
  background: var(--ce-accent-soft);
  border-radius: 2px;
}

/* ===========================================================
   🧾 DESCRIÇÃO CURTA (ORIGINAL OCULTA)
   =========================================================== */

.descricao-curta > h3,
.descricao-curta > p {
  display: none !important;
}

/* ===========================================================
   🛒 CTA – CARD DE COMPRA
   =========================================================== */

.pi-cta {
  max-width: 800px;
  margin: 22px auto 0;
  background: #FCFCF9;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 6px 25px rgba(0,0,0,.07);
}

.pi-cta__head .product-name {
  font-size: 22px;
  font-weight: 500;
  color: var(--ce-text);
	padding-left: 10px;
		padding-top: 10px;

}

.pi-cta__head .product-page-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--ce-accent);
	padding-left: 10px;
}

.pi-cta__form {
  display: flex;
  gap: 10px;
}

.single_add_to_cart_button,
.single_buy_now_button {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
	
}

.pi-cta__form .single_add_to_cart_button,
.pi-cta__form .single_buy_now_button {
  flex: 1;
  width: auto;
}

.single_add_to_cart_button {
  background: var(--ce-amarelo-limao) !important;
  color: #333;
}

.single_buy_now_button {
  background: var(--ce-accent);
  color: #fff;
}

.single_add_to_cart_button:hover,
.single_buy_now_button:hover {
  transform: translateY(-1px);
  opacity: .95;
}

/* ===========================================================
   ℹ️ INFORMAÇÕES (PDF / DOWNLOAD)
   =========================================================== */

.informacoes-produto {
  margin-top: 12px;
  padding-top: 10px;
	  padding-bottom: 10px;
  border-top: 1px solid var(--ce-border);
	  border-bottom: 1px solid var(--ce-border);

}

.informacoes-produto .info-item {
  display: flex;
  align-items: center;
  margin: 5px 0;
	gap: 5px;
}

.informacoes-produto hr { display: none; }

.informacoes-produto .info-text {
  font-size: 12px;
  color: var(--ce-text);

}

.informacoes-produto .info-icon {
  width: 16px !important;
  height: 16px !important;
	  filter: grayscale(100%) brightness(0.3);
  opacity: 0.9;
	
	
}

/* ===========================================================
   🏷️ TAGS
   =========================================================== */

.pi-tags {
  margin-top: 6px;
  display: flex;
  gap: 6px;
}

.pi-tag {
  font-size: 10px;
  padding: 4px 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fafafa;
}

.pi-tag:hover {
  background: var(--ce-accent-soft);
}

/* ===========================================================
   🧩 DESCRIÇÃO COMPLETA
   =========================================================== */

.descricao-produto {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ce-text);
}

.descricao-produto .bloco {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  margin-bottom: 26px;
  box-shadow: 0 14px 36px rgba(0,0,0,.06);
}

.descricao-produto .bloco h3 {
  position: relative;
  padding-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
}

.descricao-produto .bloco h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  background: var(--ce-accent-soft);
  border-radius: 3px;
}

/* ===========================================================
   📱 MOBILE – PED CLONE
   =========================================================== */

.ped-mobile-head-wrap {
  display: none;
}

.descricao-curta ul li {
  padding-left: 0;
}

.descricao-curta ul li::before {
  display: none !important;
}

/* MOBILE */
@media (max-width: 768px) {

  /* Mostra o cabeçalho clonado */
  .ped-mobile-head-wrap {
    display: block;
    padding: 14px 16px;
    text-align: left;
		
  }

  .ped-mobile-head-wrap .pi-breadcrumb {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .ped-mobile-head-wrap h1.product_title {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
  }

  .ped-mobile-head-wrap h1.product_title::after {
    width: 48px;
    height: 2px;
    margin: 12px 0;
  }

  .ped-mobile-desc-curta h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 8px 0 4px;
  }

  .ped-mobile-desc-curta p {
    font-size: 14px;
    color: #555;
    margin: 0;
  }

  /* Oculta SOMENTE os originais */
  .single-product h1.product_title:not(.ped-clone),
  .single-product h1.product-title:not(.ped-clone),
  .single-product .product_title.entry-title:not(.ped-clone),
  .single-product .pi-breadcrumb:not(.ped-clone) {
    display: none !important;
  }

  /* CTA empilhado */
  .pi-cta__form {
    flex-direction: column;
  }

  .single_add_to_cart_button,
  .single_buy_now_button {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
  }







}

.descricao-curta {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 22px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
		  border: 1px solid var(--ce-border);
	  background: linear-gradient(180deg, #ffffff, #fafafa);


}



