/* PAGINA: produto */
/*
 * ================================================================
 *  EXEMPLO — Estilos globais (carregam em todo o site)
 *
 *  Duplique este arquivo, renomeie e edite à vontade.
 *
 *  Opções para a 1ª linha:
 *    PAGINA: todas         → todo o site
 *    PAGINA: minha-conta   → só na Minha Conta
 *    PAGINA: loja          → só na loja
 *    PAGINA: produto       → só em produtos
 *    PAGINA: carrinho      → só no carrinho
 *    PAGINA: checkout      → só no checkout
 *    PAGINA: home          → só na página inicial
 * ================================================================
 */

/* Escreva seus estilos abaixo: */

.woocommerce div.product form.cart .variations {
    height: 10rem;
}

/* Guia de tamanhos */
.single_variation_wrap > a[onclick*="onSizeGuideClick"] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #4a154b !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 25px;
  padding: 4px 0;
  transition: opacity 0.2s ease;
}

.single_variation_wrap > a[onclick*="onSizeGuideClick"]::before {
  content: "📏";
  font-size: 16px;
  text-decoration: none;
}

.single_variation_wrap > a[onclick*="onSizeGuideClick"]:hover {
  opacity: 0.85;
  text-decoration: none;
  font-weight: 800;
}


#woo-custom-installments-product-price {
 width: auto !important;   
}


.woo-custom-installments-offer,
.woo-custom-installments-offer * {
  color: rgba(38, 171, 91, 1) !important;
}

/* Payments-methods-cards - Container da galeria - impede quebra de linha */
.payments-methods-cards.wp-block-gallery {
    flex-wrap: nowrap !important;
    justify-content: center;
    align-items: center;
    gap: 36px !important;
    width: 100%;
}

/* Payments-methods-cards - Cada figure vira uma coluna flexível e encolhe igualmente */
.payments-methods-cards .wp-block-image {
    flex: 1 1 0;
    min-width: 0;
    max-width: none !important;
    margin: 0 !important;
}

/* Payments-methods-cards - Imagem se ajusta ao espaço disponível */
.payments-methods-cards .wp-block-image img {
    width: 100%;
    height: auto;
    max-height: 54px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Payments-methods-cards - Ajuste fino para telas bem pequenas */
@media (max-width: 400px) {
    .payments-methods-cards .wp-block-image img {
        max-height: 36px;
    }
    .payments-methods-cards.wp-block-gallery {
        gap: 4px !important;
    }
}

