.producto-martillo-container {
  max-width: 950px;
  margin: 2.5rem auto 2rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 2.5rem 2rem;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .producto-martillo-container {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0.5rem;
    gap: 1.5rem;
  }
}

.producto-martillo-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

.producto-martillo-thumbnail-img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border: 2px solid #eee;
  border-radius: 8px;
  cursor: pointer;
  transition: border 0.2s;
}

.producto-martillo-thumbnail-img:hover {
  border: 2px solid #ff6600;
}

.producto-martillo-main-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.producto-martillo-main-img {
  width: 270px;
  height: 270px;
  object-fit: contain;
  border-radius: 10px;
  background: #f7f7f7;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.producto-martillo-details {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
}

.producto-martillo-title {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 2.1rem;
  font-weight: 700;
  color: #1a232f;
}

.producto-martillo-price {
  font-size: 1.7rem;
  color: #ff6600;
  font-weight: bold;
  margin: 0.7rem 0;
}

.producto-martillo-button {
  background: #ff6600;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}

.producto-martillo-button:hover {
  background: #e65c00;
}

/* ===============================
   BOTÓN CARRITO NAVBAR
=================================*/

.btn-carrito-navbar {
    background: #ffcc00;
    color: #003366;
    padding: 6px 16px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-carrito-navbar:hover {
    background: #ffffff;
    color: #003366;
}

.badge-carrito {
    background: #003366;
    color: #ffffff;
    font-size: 12px;
    padding: 3px 7px;
    border-radius: 50%;
    font-weight: bold;
}