/* Contenedor principal del producto */
.product-sheet-container {

    border-radius: 15px;
    background-color: #FFF9DD;
    padding: 20px;
    margin-top: 90px;
    
  }
  
  /* Imagen dinámica */
  .dynamic-image-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;

    border-radius: 10px;
    overflow: hidden;
    background-color: white;
  }
  
  .dynamic-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  /* Títulos e información */
  .product-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4D6E59;
    margin-bottom: 20px;
  }
  
  /* Tags */
  .tag {
    background-color: #ffe5d0;
    color: #4D6E59;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  
  .tag:hover {
    background: #f8b810;
    color: white;
  }
  
  .tag.active {
    background-color: #f48148;
    color: white;
  }
  
  /* Descripción */
  .product-description {
    font-size: 0.9rem;
    color: #555;
    margin-top: 20px;
    line-height: 1.6;
  }
  