.breadcrumb {
  font-size: 13px;
  margin-bottom: 20px;
}

.breadcrumb a {
  text-decoration: none;
  color: #666;
}

.breadcrumb .active a {
  color: var(--orbe-laranja);
  font-weight: 700;
}

.main-stage {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.thumb-strip {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.thumb-box {
  width: 70px;
  height: 70px;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  padding: 5px;
  background: #fff;
  flex-shrink: 0;
  transition: 0.2s;
}

.thumb-box.active,
.thumb-box:hover {
  border-color: var(--orbe-laranja);
  box-shadow: 0 0 0 2px rgba(255, 89, 0, 0.1);
}

.thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tag-cat {
  background: #fff0e6;
  color: var(--orbe-laranja);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.prod-title-main {
  font-family: 'Inter', sans-serif;
  color: var(--orbe-dark);
  font-weight: 800;
  line-height: 1.2;
  margin: 15px 0;
}

.price-box-detail {
  background: #f9f9f9;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
}

.big-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orbe-laranja);
  line-height: 1;
}

.sub-price {
  font-size: 1.1rem;
  color: #777;
}

.btn-cart-sq {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #eee;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.2s;
}

.btn-cart-sq:hover {
  border-color: var(--orbe-laranja);
  color: var(--orbe-laranja);
}

.btn-whatsapp-large {
  flex-grow: 1;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.2s;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
  background: #1ebc57;
  color: white;
  transform: translateY(-2px);
}

.spec-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 20px;
}

.spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #555;
  font-size: 12px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.spec-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff0e6;
  color: var(--orbe-laranja);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.spec-table td {
  padding: 6px 0;
  border-bottom: 1px solid #f2f2f2;
  font-size: 14px;
}

.spec-table td:first-child {
  font-weight: 700;
  color: #444;
  width: 170px;
}

.notes-block {
  background: #fffbf5;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px;
}

.notes-block strong {
  color: var(--orbe-laranja);
}

.brand-card-prod {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #eee;
  border-left: 4px solid var(--orbe-laranja);
  border-radius: 10px;
  padding: 10px 20px;
  margin-top: 15px;
  text-decoration: none;
  transition: 0.2s;
}

.brand-card-prod:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: inherit;
}

.brand-logo-small {
  height: 35px;
  max-width: 80px;
  object-fit: contain;
  margin-right: 20px;
}

.brand-name-small {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media(min-width: 992px) {
  .spec-columns {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
  }

  .brand-card-prod {
    padding: 6px 15px;
    margin-top: 10px;
  }

  .brand-logo-small {
    height: 28px;
    margin-right: 12px;
  }

  .brand-name-small {
    font-size: 1rem;
  }

  #zoomImage {
    transition: transform 0.2s ease-out;
    transform-origin: center center;
  }

  .main-stage:hover #zoomImage {
    transform: scale(2.5);
    cursor: crosshair;
  }
}

/* Styles for HTML content inside product description */
.content-text h1,
.content-text h2,
.content-text h3,
.content-text h4,
.content-text h5,
.content-text h6 {
    font-size: 1.25rem !important;
    font-weight: 700;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
}

.content-text p {
    margin-bottom: 1rem;
}

.content-text ul, 
.content-text ol {
    margin-bottom: 1.2rem;
    padding-left: 1.2rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

@media(max-width: 768px) {
  .prod-title-main {
    font-size: 1.5rem;
  }

  .big-price {
    font-size: 2rem;
  }
}
