/* Algemene body */ body { font-family: Arial, sans-serif; margin: 0; display: flex; justify-content: space-between; background-color: #ffffff; } /* Linkerkant menu */ .menu-list { width: 25%; background-color: #d7d7d7; padding: 20px; height: 100vh; overflow-y: auto; } .menu-item { background-color: #ff9d3b; padding: 20px; margin: 10px 0; border-radius: 8px; cursor: pointer; font-size: 1.5em; transition: all 0.3s ease; } .menu-item:hover { background-color: #ff9d3b; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); } /* Productweergave in een grid */ .product-display { width: 55%; flex-wrap: wrap; padding: 50px; justify-content: space-between 40px; display: inline-flex; } .product-box { width: 200px; margin: 10px; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); text-align: center; cursor: pointer; transition: all 0.3s ease; background-color: #e3e3e3 ; } .product-box:hover { transform: scale(1.05); } .product-box img { width: 100%; max-height: 150px; object-fit: cover; } /* Modaal venster */ .modal { display: none; position: fixed; z-index: 1; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); } .modal-content { background-color: white; margin: 5% auto; padding: 20px; border-radius: 8px; width: 80%; max-width: 600px; text-align: center; max-height: 90vh; overflow-y: auto; } .modal img { width: 100%; max-width: 300px; height: auto; margin: 20px 0; } .close { color: red; position: absolute; top: 80px; right: 450px; font-size: 40px; font-weight: bold; cursor: pointer; } /* Winkelmandje */ .cart { width: 25%; padding: 20px; background-color: #fff; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } .cart ul { list-style-type: none; padding: 0; } .cart li { margin-bottom: 10px; } #add-to-cart { background-color: #4CAF50; color: white; border: none; padding: 10px 20px; cursor: pointer; border-radius: 5px; } #add-to-cart:hover { background-color: #45a049; } /* Winkelwagen-icoon */ .cart-icon { position: fixed; top: 20px; right: 20px; background-color: #ff6600; color: white; padding: 10px 15px; border-radius: 50%; font-size: 20px; cursor: pointer; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } .cart-icon:hover { background-color: #e65c00; } .cart-count { position: absolute; top: -5px; right: -5px; background: red; color: white; font-size: 12px; font-weight: bold; padding: 3px 6px; border-radius: 50%; } /* Productstijl */ .products { display: flex; gap: 20px; margin: 50px; } .product { border: 1px solid #ddd; padding: 20px; text-align: center; } .product button { background-color: #ff6600; color: white; border: none; padding: 10px; cursor: pointer; margin-top: 10px; } .product button:hover { background-color: #e65c00; }