/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}



/* Header */
header {
    background-color: #e0f7ff;
    padding: 20px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensures it stays on top */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


header img {
    height: 50px;
    margin-right: 10px;
    vertical-align: middle;
}

header h1 {
    display: inline;
    color: #006494;
    font-size: 24px;
}

/* Banner Section */
.offer-slide {
    position: absolute;
    transition: opacity 1s ease-in-out; /* Smooth fade */
    opacity: 0;
}

#banner {
    position: relative;
    width: 600px;
    height: 200px;
}

.offer-slide img {
    width: 100%;
    height: auto;
}
/* Sidebar Styles */

/* Adjust body to not be hidden by the fixed header */
body {
    padding-top: 80px; /* Adjust based on header height */
    background-color: #f4faff;
}

/* Sidebar */
#sidebar {
    background-color: #e8f5ff;
    padding: 20px;
    width: 200px;
    position: fixed;
    top: 80px; /* Adjust to start just below the fixed header */
    bottom: 0;
    left: 0;
    overflow-y: auto;
    border-right: 2px solid #b3e0ff;
    border-radius: 0 8px 8px 0;
    z-index: 999; /* Keeps it below the header but above content */
}

/* Adjust Main Content Positioning */
#product-grid, #product-detail {
    margin-left: 220px; /* Leave space for the sidebar */
    padding: 20px;
}

#sidebar ul {
    list-style-type: none;
}

#sidebar li {
    margin: 10px 0;
}

#sidebar a {
    color: #006494;
    text-decoration: none;
    font-weight: bold;
}

#sidebar a:hover {
    color: #003f5c;
}

/* Product Grid */
#product-grid {
    margin-left: 220px; /* Adjust based on sidebar width */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}

.product-block {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0f7ff;
    border: 1px solid #b3e0ff;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    height: 250px;
    color: #006494;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.product-block:hover {
    background-color: #b3e0ff;
}

/* Product Detail Styles */
#product-detail {
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

#product-header h2 {
    color: #006494;
}

.price-before {
    text-decoration: line-through;
    color: #b3b3b3;
}

.price-now {
    font-size: 1.5em;
    color: #006494;
    font-weight: bold;
}

.image-gallery img {
    width: 150px;
    margin: 10px;
    border: 1px solid #b3e0ff;
    border-radius: 4px;
}

#technical-sheet ul {
    list-style-type: disc;
    margin-left: 20px;
}

#download-links ul {
    list-style-type: none;
}

#download-links li a {
    color: #006494;
    text-decoration: none;
}

#download-links li a:hover {
    text-decoration: underline;
}

.video-container iframe {
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid #b3e0ff;
}


/* Footer Section */
footer {
    background-color: #cceeff;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    color: #003f5c;
}

footer h3 {
    color: #003f5c;
    margin-bottom: 10px;
}

footer p {
    margin: 5px 0;
}
