.detail-img {
    max-height: 380px;
    object-fit: contain;
    padding: 10px;
    background-color: #fff;
}


p {
    line-height: 1.6;
    font-size: 0.95rem;
}

.breadcrumb {
  background: none;
  padding: 0;
  font-size: 0.9rem;
}
.breadcrumb a {
  color: black;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--orange-dark);
  text-decoration: none;
  font-weight: 700;
}

.breadcrumb-item.active {
  color: var(--orange-dark);
}

.img-produk-wrapper {
    width: 100%;
    height: 300px;
    max-width: 300px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.img-produk-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}


.btn-keranjang {
  background-color: var(--orange-main);
  color:var(--white);
  border: none;
  width: 100%;
  padding: 8px 12px;
  font-weight: 600;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.btn-keranjang:hover {
  background-color: var(--orange-dark);
  transform: translateY(-2px);
}

.harga {
  color: var(--orange-dark); /* atau #ff8800 kalau belum definisi */
  font-weight: 1000;
  font-size: 1.5rem;
}


