  @font-face {
    font-family: 'Bradley Hand ITC';
    src: url('../fonts/BRADHITC.TTF') format('truetype');
  } 
  
  .fixed-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1030;
    padding-left: 10px;
    padding-right: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 11%;
  }
  
  .fixed-container span {
    background-color: #e3bd60;
  }
  
  .fixed-container img {
    width: 50px;
  } 
  
  .card.position-relative {
    position: relative;
    overflow: hidden;
    padding: 0;
  }
  
  .card-img-top {
    margin-bottom: 0 !important;
    display: block;
    width: 100%;
    height: auto;
  }
  
  #buy {
    margin-top: 0 !important;
    border-radius: 0 0 6px 6px;
    font-size: 30px;
    font-family: 'Bradley Hand ITC', cursive;
    background: #bc941c;
    border: none;
    padding: 0.5rem 1rem;
  }
  
  .btn-carrito {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px 10px;
    background-color: #fffbe6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
    z-index: 10;
  }
  
  .btn-carrito:hover {
    background-color: #f6eac5;
  }
  
  .btn-carrito img {
    display: block;
    pointer-events: none;
    width: 33px;
    height: auto;
  }
  
  /* Posicionar los botones de talla sobre la imagen */
  .tallas-container {
    position: absolute;
    bottom: 68px;
    left: 92%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 5px 10px;
    border-radius: 6px;
    z-index: 20;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  
  .talla-btn {
    font-family: 'Bradley Hand ITC', cursive;
    font-size: 18px;
    padding: 6px 12px;
    border-radius: 100px;
    border: none;
    background-color: white;
    color: #bc941c;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .talla-btn:hover, .talla-btn.active {
    background-color: #bc941c;
    color: white;
    border-color: #bc941c;
  }

