/** Shopify CDN: Minification failed

Line 46:0 Unexpected "}"

**/
/* -------------------------
   BirdWalk — Título produto
   ------------------------- */
.product__title h1,
.product__title h2 {
  font-size: 2.2rem !important;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem; /* espaço entre título e subtítulo */
  text-transform: none;
}

/* Espaço entre título e o bloco de preço (garante compatibilidade sem usar section.id) */
.product__title + .price,
.product__title + #price,
.product__title ~ .price,
.product__title ~ div[id^="price-"],
.product__title + div[id^="price-"] {
  margin-top: 0.8rem !important;
}

/* Garante um espaçamento vertical coerente na área de info do produto */
.product__info-container {
  gap: 1.4rem;
}

/* -------------------------
   BirdWalk — Estilo do preço
   ------------------------- */
.price--large {
  font-size: 1.65rem !important; /* ligeiramente maior */
  font-weight: 500;
  color: rgb(35, 35, 35);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.2rem !important; /* mantém o pouco espaço antes do botão */
}

 /* aproxima o botão */
}

/* Preço comparativo / antes de desconto */
.price__sale s,
.price__compare {
  font-size: 1.05rem;
  color: rgba(40, 40, 40, 0.55);
  font-weight: 400;
  margin-left: 0.3rem;
}

/* -------------------------
   BirdWalk — Botão adicionar ao carrinho
   ------------------------- */
.product-form__submit {
  font-size: 1.5rem; /* ligeiramente maior */
  padding: 0.9rem 1.4rem;
  border-radius: 6px; /* retangular, apenas cantos suaves */
  background-color: #1e1e1e;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  border: none;
  display: inline-block;
}


/* Hover e foco */
.product-form__submit:hover,
.product-form__submit:focus {
  background-color: #333333;
  transform: translateY(-1px);
  outline: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Em caso de botão desabilitado (sold out) */
.product-form__submit[disabled],
.product-form__submit[aria-disabled="true"] {
  background-color: #f0f0f0;
  color: #888888;
  cursor: default;
  transform: none;
  box-shadow: none;
}

/* -------------------------
   Mobile tweaks
   ------------------------- */
@media (max-width: 600px) {
  .product__title h1,
  .product__title h2 {
    font-size: 1.6rem !important;
    margin-bottom: 0.4rem;
  }
  .price--large {
    font-size: 1.2rem !important;
  }
  .product-form__submit {
    width: 100%;
    padding: 0.95rem 1.2rem;
    font-size: 0.98rem;
  }
  .product__info-container {
    gap: 1rem;
  }
}
