
  .product-container {
    max-width: 900px;
    margin: 2rem auto;
    background-color: #f3f9ff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 5rem;
  }
  .product-image {
    flex: 1 1 300px;
    max-width: 350px;
    width: 100%;
    height: 450px;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  .product-image img {
    width: 100%;
    justify-content: center;
    align-items: center;
    object-fit: contain;
    margin: auto;
  }
  .product-details {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: auto;
  }
  .product-header {
    margin-bottom: 1rem;
  }
  .product-name {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #232323;
    font-size: 20px;
    font-weight: bolder;
    margin: 0 0 0.3rem;
  }
  .product-description {
    margin-bottom: 0.8rem;
    color: #232323;
    font-size: 18px;
    text-align: justify;
    margin: 10px auto;
  }
  .product-hereby {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #232323;
    font-size: 14px;
  }
  .price-stock {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .product-price {
    font-size: 28px;
    letter-spacing: 1px;
    font-weight: 700;
    color: rgb(225, 24, 24);
  }
  .in-stock-tag {
    background-color:  rgb(58, 196, 58);
    color: white;
    font-weight: 600;
    padding: 0.2rem 0.7rem;
    border-radius: 12px;
    font-size: 0.9rem;
    user-select: none;
  }
  .quantity-options {
    margin-bottom: 1.2rem;
  }
  .quantity-options label {
    display: block;
    margin-bottom: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #003366;
  }
  .quantity-options input[type="radio"] {
    margin-right: 0.6rem;
    accent-color: #2dacc1;
    cursor: pointer;
  }
  .terms-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
  }
  .terms-checkbox input[type="checkbox"] {
    margin-right: 0.5rem;
    width: 18px;
    height: 18px;
    accent-color: #2dacc1;
    cursor: pointer;
  }
  .terms-checkbox label {
    user-select: none;
    font-weight: 600;
    color: #232323;
  }
  .icons-row {
    width: 80%;
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    margin: 20px auto;
  }
  .icon {
    width: 50px;
    height: 50px;
    background-color: #2dacc1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    user-select: none;
    margin: auto;

  }
  /* example icons: we'll use emojis here but you can replace with SVG or images */
.Iconos_product {
    width: 100%;
    padding: 5px;
}
  button.add-cart {
    background-color: #2dacc1;
    color: white;
    border: none;
    padding: 1rem 1.8rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;
  }
  button.add-cart:disabled {
    background-color: #aac9f9;
    cursor: not-allowed;
  }
  button.add-cart:hover:not(:disabled) {
    background-color: #003366;
  }

  /* Responsive */
  @media (max-width: 720px) {
    .product-container {
      flex-direction: column;
      padding: 1rem;
    }
    .product-image, .product-details {
      max-width: 80%;
      flex: none;
      margin: auto;
    }
    .product-name {
      font-size: 1.7rem;
    }
    button.add-cart {
      width: 100%;
    }
    .icons-row {
      justify-content: center;
    }
  }
  /* Extra small phones (under 400px) */
@media (max-width: 399px) {
  body {
    padding: 0;
  }
  .product-image img {
    width: 80%;
    margin: auto;
   }
  .product-name {
    font-size: 1.5rem;
  }
  .product-description {
    font-size: 18px;
  }
  button.add-cart {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }
  .icons-row {
    gap: 0.8rem;
  }
}

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
  .product-container {
    max-width: 1100px;
    padding: 3rem 4rem;
    gap: 3rem;
  }
  .product-name {
    font-size: 2.5rem;
  }
  .product-description {
    font-size: 1.2rem;
  }
  button.add-cart {
    font-size: 1.4rem;
    padding: 1.2rem 2.5rem;
  }
  .icons-row {
    gap: 2rem;
  }
}