/* Winkelwagen Icon */
.cart-icon-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

#cart-icon {
    width: 40px;
    height: 40px;
}

#cart-count {
    position: absolute;
    top:20;
    right:-29;
    background-color: #FF6000;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}

/* Modaal Venster */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    color: #000; /* Zorg ervoor dat de tekstkleur zwart is */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.cart-product {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.cart-product img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
    vertical-align: middle;
}

.cart-product div {
    flex: 1;
}

.cart-product p {
    margin: 5px 0;
    color: #000; /* Zorg ervoor dat de tekstkleur zwart is */
}

.cart-product input {
    width: 50px;
    text-align: center;
}

.cart-product button {
    background-color: #FF6000;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

.cart-product button:hover {
    background-color: #E55300;
}

/* Mouseover vergroting voor desktop */
.product-image:hover {
    transform: scale(1.5);
    transition: transform 0.25s ease;
}

/* Fullscreen image voor mobiel */
.fullscreen-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.fullscreen-image img {
    max-width: 90%;
    max-height: 90%;
}

.fullscreen-image .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}