header { background-color: #333; padding: 5px 0; padding-top: 30px; text-align: center; } .logo img { max-width: 100px; height: auto; } .logo a { color: green; text-decoration: none; } h1 { text-align: center; color: #333; font-size: 2rem; } .resized-image { width: 200px; height: auto; } .gallery { display: flex; flex-wrap: nowrap; overflow-x: auto; } .gallery img { margin-right: 10px; } #main-menu { position: fixed; top: 0; left: 0; width: 100%; background-color: #0f3947; padding: 0px 20px; box-sizing: border-box; z-index: 1000; transition: background-color 0.3s ease, box-shadow 0.3s ease; } #main-menu ul { list-style-type: none; margin: 0; padding: 0; display: flex; justify-content: center; } #main-menu li { margin: 0 10px; } #main-menu a { text-decoration: none; color: #f0f0f0; font-weight: bold; font-size: 16px; text-transform: uppercase; padding: 10px; transition: color 0.3s ease; } #main-menu a:hover { color: #ffd700; } #main-menu.scrolled { background-color: #0f3947; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); } #main-menu.hidden { transform: translateY(-100%); } body { font-family: 'Roboto', Arial, sans-serif; margin: 0; padding: 0; background-color: #f0f0f0; } .language-buttons { display: flex; justify-content: center; margin-top: 20px; } .language-buttons a { margin: 0 10px; padding: 10px 20px; border-radius: 25px; border: 2px solid #0f3947; background-color: white; color: #0f3947; text-decoration: none; font-size: 16px; font-weight: bold; transition: all 0.3s ease; } .language-buttons a:hover { background-color: #0f3947; color: white; border-color: #0056b3; } .order-button { background-color: #f0f0f0; border: 1px solid #ccc; padding: 10px; margin-top: 10px; text-align: center; } .order-link { text-decoration: none; color: #333; font-weight: bold; } .product { background: #fff; border: 1px solid #ddd; margin: 20px auto; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); max-width: 1050px; } .product img { max-width: 100%; height: auto; display: block; border-radius: 8px; margin-bottom: 10px; } .product h2 { color: #333; margin-top: 0; font-size: 1.5rem; text-align: center; } .product p { color: #666; line-height: 1.6; } .product .price { font-size: 1.2em; color: #e67e22; margin-top: 10px; font-weight: bold; } .product ul { margin-top: 10px; margin-bottom: 10px; } .product ul li { margin-bottom: 5px; } .product .additional-info { margin-top: 15px; } .product table { width: 100%; margin-top: 15px; border-collapse: collapse; } .product table th, .product table td { border: 1px solid #ddd; padding: 8px; text-align: center; } .product table th { background-color: #f2f2f2; font-weight: bold; } .product h3 { margin-top: 20px; } @media (max-width: 768px) { .product { padding: 15px; max-width: 100%; margin-left: 10px; margin-right: 10px; } .product img { margin-bottom: 8px; } .product h2 { font-size: 1.3rem; } .product .price { font-size: 1.1em; } } .modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); display: flex; justify-content: center; align-items: center; z-index: 9999; } .modal-img { max-width: 90%; max-height: 90%; object-fit: contain; cursor: pointer; } footer { background-color: #333; padding: 10px 0; text-align: center; color: #ddd; }