/* Algemene Stijlen voor Donation Store Deals */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

html, body, .donation-store-deals, .donation-store-deals * {
    font-family: 'Bebas Neue', sans-serif !important;
}

.donation-store-deals {
    display: block;
    transform: scale(1.5);
    transform-origin: top left;
    width: calc(100% / 1.5);
    padding: 20px;
    box-sizing: border-box;
    perspective: 1200px;
}

/* Cart */
.donation-store-deals .cart-deals {
    width: 100%;
    margin: 50px 0 20px;
    padding: 20px;
    border: 1px solid rgba(204,172,98,0.5);
    border-radius: 5px;
    background-color: rgba(232,166,82,0.06);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
    position: relative;
    box-sizing: border-box;
}
.donation-store-deals .cart-deals h2 {
    margin-top: 0;
    font-size: 3em;
    text-align: center;
    color: #CBAB62;
}
.donation-store-deals .cart-items-deals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.donation-store-deals .cart-item-deals {
    display: flex;
    align-items: center;
    background-color: rgba(204,172,98,0.1);
    border: 1px solid rgba(204,172,98,0.5);
    border-radius: 5px;
    padding: 8px 12px;
    margin: 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    position: relative;
}
.donation-store-deals .cart-item-deals img.cart-item-image-deals {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    object-fit: cover;
    margin-right: 10px;
}
.donation-store-deals .cart-item-info-deals {
    display: flex;
    flex-direction: column;
}
.donation-store-deals .cart-item-name-deals {
    font-size: 1em;
    color: #fff;
    margin-bottom: 2px;
}
.donation-store-deals .cart-item-price-deals {
    font-size: 0.9em;
    color: #cbab62;
}
.donation-store-deals .cart-item-deals button {
    position: absolute;
    right: 6px;
    top: 6px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    padding: 0;
}
.donation-store-deals .cart-item-deals button:hover {
    background: #c0392b;
}
.donation-store-deals #cart-total-deals {
    font-size: 1.5em;
    text-align: center;
    color: #fff;
}
.donation-store-deals .cart-deals form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.donation-store-deals .cart-deals form input[type="text"] {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #cbab62;
    text-align: center;
    background-color: rgba(25, 27, 30, 0.9);
    color: #fff;
}
.donation-store-deals .checkbox-container-deals {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.donation-store-deals .checkbox-container-deals input[type="checkbox"] {
    margin-bottom: 11px;
    margin-right: 5px;
}
.donation-store-deals .checkbox-container-deals label {
    font-size: 14px;
    cursor: pointer;
    color: #cbab62;
}

/* Checkout buttons naast elkaar */
.donation-store-deals .checkout-buttons-deals {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
}

/* Button basis */
.donation-store-deals .btn-deals {
    position: relative;
    overflow: hidden;
    background-color: #cbab62;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s ease;
}
.donation-store-deals .btn-deals:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.donation-store-deals .btn-deals:hover:enabled {
    background-color: #b49556;
}

/* Achtergrond-logo via pseudo-element */
.donation-store-deals .btn-deals::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; height: 120%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
}
.donation-store-deals .btn-deals span {
    position: relative;
    z-index: 2;
}
.donation-store-deals .btn-deals:hover::before {
    opacity: 0.2;
}

/* Specifieke logo’s */
.donation-store-deals .btn-paypal::before {
    background-image: url('https://pngimg.com/d/paypal_PNG9.png');
}
.donation-store-deals .btn-osrsgp::before {
    background-image: url('https://oldschool.runescape.wiki/images/thumb/Coins_detail.png/128px-Coins_detail.png');
}
.donation-store-deals .btn-crypto::before {
    background-image: url('https://www.pngall.com/wp-content/uploads/10/Ethereum-Logo-PNG-Pic.png');
}

/* Product-container gecentreerd */
.donation-store-deals .product-container-deals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.donation-store-deals .product-deals {
    border: 1px solid rgba(204,172,98,0.5);
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    text-align: center;
    font-size: 18px;
    width: 150px;
    background-color: rgba(232,166,82,0.06);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.donation-store-deals .product-deals:hover {
    transform: scale(1.05);
    box-shadow:
            0 25px 40px rgba(0,0,0,0.25),
            0 0 20px rgba(204,172,98,0.6);
    z-index: 1;
}
.donation-store-deals .product-deals img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    z-index: 2;
}
.donation-store-deals .product-deals h3 {
    font-size: 1.1em;
    margin: 10px 0 5px 0;
    color: #fff;
}
.donation-store-deals .product-deals p {
    margin: 5px 0;
    color: #cbab62;
}
.donation-store-deals .product-deals button {
    background-color: #cbab62;
    color: #fff;
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.donation-store-deals .product-deals button:hover {
    background-color: #b49556;
}

.donation-store-deals .bonus-container-deals {
    margin-top: 10px;
    text-align: center;
}
.donation-store-deals .bonus-label-deals {
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
}
.donation-store-deals .bonus-image-deals {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .donation-store-deals {
        width: 100%;
        transform: none;
    }
    .donation-store-deals .cart-deals {
        margin: 20px 0 10px;
    }
    .donation-store-deals .product-deals {
        width: 80%;
    }
}

.donation-store-deals .cart-deals form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.donation-store-deals .checkout-buttons-deals {
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}
