@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&display=swap');

.single-product div.product {
  display: none !important;
}

.ccb-pp2 {
  /* Trucos para "escapar" del contenedor angosto que tu tema le pone al
     contenido, y llegar de borde a borde de la pantalla, sin importar
     qué tan ancho sea ese contenedor: */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  font-family: 'Baloo 2', sans-serif;
  min-height: 600px;
}

.ccb-pp2-gallery {
  background: #7dd9f0;
  padding: 60px clamp(24px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ccb-pp2-gallery img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.ccb-pp2-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.ccb-pp2-thumbs button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #111;
  background: #fff center/cover no-repeat;
  cursor: pointer;
  padding: 0;
}

.ccb-pp2-thumbs button.is-active {
  border-color: #ff5fa2;
  border-width: 3px;
}

.ccb-pp2-info {
  background: #f4ecd8;
  padding: 60px clamp(24px, 6vw, 100px);
}

.ccb-pp2-eyebrow {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 6px;
}

.ccb-pp2-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #c6f24e;
  -webkit-text-stroke: 2px #111;
  text-stroke: 2px #111;
  line-height: 1;
  margin: 0 0 20px;
}

.ccb-pp2-box {
  border: 2px solid #111;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  background: #fff;
}

.ccb-pp2-variant-group {
  margin-bottom: 14px;
}

.ccb-pp2-variant-label {
  display: block;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: #111;
}

.ccb-pp2-variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ccb-pp2-variant-btn {
  border: 2px solid #111;
  border-radius: 8px;
  padding: 8px 14px;
  background: #fff;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  color: #111;
}

.ccb-pp2-variant-btn.is-selected {
  background: #c6f24e;
}

.ccb-pp2-variant-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.ccb-pp2-variant-hint {
  font-size: 12px;
  color: #9ca3af;
  margin: -6px 0 12px;
}

.ccb-pp2-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
}

.ccb-pp2-price-row del {
  color: #9ca3af;
  font-weight: 400;
  margin-right: 8px;
}

.ccb-pp2-desc {
  border: 2px solid #111;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
  color: #1f2937;
}

.ccb-pp2-actions {
  display: flex;
  gap: 10px;
}

.ccb-pp2-qty {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 2px solid #111;
  border-radius: 10px;
  padding: 10px 16px;
  background: #fff;
  font-weight: 800;
}

.ccb-pp2-qty button {
  border: none;
  background: none;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  color: #111;
}

.ccb-pp2-add-btn {
  flex: 1;
  background: #ff5fa2;
  color: #fff;
  border: 3px solid #111;
  border-radius: 10px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 3px 3px 0 #111;
}

.ccb-pp2-add-btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.ccb-pp2-loading {
  grid-column: 1 / -1;
  padding: 80px 24px;
  text-align: center;
  color: #6b7280;
  font-family: 'Baloo 2', sans-serif;
}

@media (max-width: 800px) {
  .ccb-pp2 {
    grid-template-columns: 1fr;
  }
}