#agregar_articulo_carrito_guardar::before{
    content: '\f07a'; /* Código del ícono de carrito en Font Awesome */
    font-family: 'Font Awesome 5 Free'; /* Indica la familia de fuentes de Font Awesome */
    font-weight: 900; /* Necesario para la versión sólida de los íconos */
    margin-right: 10px; /* Espacio entre el ícono y el texto */
    font-size: 18px; /* Tamaño del ícono */  
}
@media (max-width: 767.98px) { /* Dispositivos móviles */
  .responsive-title {
          font-size: 1rem !important;
      }
      .responsive-subtitle {
          font-size: 0.9rem !important;
      }
      .responsive-text {
          font-size: 0.8rem !important;
      }
      .responsive-price {
          font-size: 1.3rem !important;
      }
      .responsive-paragraph {
          font-size: 0.7rem !important;
      }
  }
  .img-container {
      width: 100%;
      max-height: 300px; /* ajusta según tu diseño */
      justify-content: center;
      align-items: center;
      overflow: hidden;
      background-color: #f8f9fa; /* opcional: fondo neutro */
  }

  .img-container img {
      width: 100%;
      height: 100%;
      object-fit: contain;
  }
  #zoom_03 {
      border: 2px solid white;
  }
  .custom-radio-grid input[type="radio"] {
      left: 15%;
  }
  .form-check-cupon {
      border: 1px solid #ccc;
      border-radius: 10px;
      padding: 10px 16px;
      text-align: left;
      transition: all 0.2s ease;      
  }
  .custom-radio-grid {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
  }
  .custom-radio-grid label {
      cursor: pointer;
      text-align: center;
      min-width: 70px;
      font-weight: 500;
      box-shadow: 0 0 0 1px transparent;
      transition: all 0.2s ease;
      display: flex;
      flex-direction: column;
      font-size: 14px;
  }
  .custom-radio-grid label::before {
      content: attr(data-label-main);
      font-size: 16px;
      font-weight: bold;
  }
  .custom-radio-grid label::after {
      content: attr(data-label-sub);
      font-size: 12px;
      color: gray;
  }
  .custom-radio-grid input[type="radio"]:checked + label {
      border-color: #007bff;
      box-shadow: 0 0 0 2px #007bff40;
      background: #e6f0ff;
  }
  .form-check.active {
      border: 2px solid #007bff;
      background-color: #e6f0ff;
  }
  .quantity{
      pointer-events: none;
  }
  @media (max-width: 768px) {
      .fixed-cart-controls {
          position: fixed;
          bottom: 0;
          left: 0;
          right: 0;
          z-index: 8;
          background-color: #fff;
          padding: 10px;
          margin: 0;
          display: flex;
          align-items: center;
          box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
      }

      .fixed-cart-controls .form-group {
          margin-bottom: 0 !important;
      }

      .fixed-cart-controls .col-4,
      .fixed-cart-controls .col-8 {
          padding: 0 5px;
      }

      .fixed-cart-controls .col-4 {
          flex: 0 0 40%;
          max-width: 40%;
      }

      .fixed-cart-controls .col-8 {
          flex: 0 0 60%;
          max-width: 60%;
      }

      .fixed-cart-controls .input-group {
          width: 100%;
      }

      #agregar_articulo_carrito_guardar {
          width: 100%;
          border-radius: 30px;
      }
      #zoom_03 {
        width: auto !important;
        height: auto !important;
        position: static !important;
      }
  }