.price {
    padding: 0px;
    margin: 0px;
    font-size: 15px;
    color: black;
    gap: 8px;
    flex-direction: row;
    display: flex;
    align-items: center;
}

.buy-now-button {
    font-family: sans-serif;
    display: flex;
    color: black;
    padding: 5px 8px;
    border-radius: 9999px;
    cursor: pointer;
    text-align: left;
    font-weight: bold;
    transition: background-color 0.2s;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    padding-right: 10px;

  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE 10+ */
  user-select: none;         /* Standard syntax */
  -webkit-tap-highlight-color: transparent;
}

.add-to-cart-button {
    font-family: sans-serif;
    display: flex;
    color: black;
    padding: 5px 8px;
    border-radius: 9999px;
    cursor: pointer;
    text-align: left;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    transition: background-color 0.2s;
  
  
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE 10+ */
  user-select: none;         /* Standard syntax */
  -webkit-tap-highlight-color: transparent;
}

.add-to-cart-button:hover {
    background: rgba(200, 200, 200, 0.15);
}

.buy-now-button:hover {
    background: rgba(200, 200, 200, 0.15);
}

#buy-it-now-icon {
    height: 21px;
    margin-right: 5px;
  
  user-drag: none;
  -webkit-user-drag: none; /* for Safari */
}

#add-to-cart-icon {
    height: 25px;
  
  user-drag: none;
  -webkit-user-drag: none; /* for Safari */
}

#ship-info-container {
    font-family: sans-serif;
    display: flex;
    background-color: #00d66f;
    color: white;
    border-radius: 5px;
    text-align: left;
    font-weight: bold;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    padding: 5px;
    height: 10px;; 
}

.buy-now-button {
      color: black;
      border: 1px solid rgba(255, 255, 255, 0.4);
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
      cursor: pointer;
      position: ab;
      overflow: hidden;
    }

.add-to-cart-button:active {
      transform: scale(0.96);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .buy-now-button:active {
      transform: scale(0.96);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .add-to-cart-button {
      color: black;
      border: 1px solid rgba(255, 255, 255, 0.4);
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .ripple-effect {
      position: absolute;
      border-radius: 50%;
      background: rgba(0, 122, 255, 0.2);
      transform: scale(0);
      animation: ripple 0.5s linear;
      pointer-events: none;
    }

    @keyframes ripple {
      to {
        transform: scale(4);
        opacity: 0;
      }
    }