  .cart__checkout-button {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .checkout-btn {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border-radius: 5px;
  }

  .checkout-btn:hover {
    background-color: #333;
    color: #fff;
  }
  .stock-limited-bar {
    background-color: #ff0000;
    color: white;
    text-align: center;
    padding: 0px;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3;
}