Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
/* Full-width top bar (currency + message) */
.top-bar {
background-color: #2f2f2f;
color: #fff;
font-size: 13px;
padding: 5px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
/* Red info strip (like FREE Delivery & B2B label) */
.info-strip {
background-color: #9d1c20;
color: white;
font-size: 13px;
padding: 6px 20px;
display: flex;
justify-content: space-between;
font-weight: bold;
}
/* Header logo + search + icons aligned */
.site-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
border-bottom: 1px solid #ddd;
}
.site-header .logo img {
max-height: 45px;
}
.site-header .search-bar {
flex: 1;
margin: 0 20px;
max-width: 700px;
}
.site-header input[type="search"] {
width: 100%;
padding: 10px;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 2px;
}
/* Navigation menu */
.main-nav {
display: flex;
justify-content: center;
gap: 30px;
font-weight: 500;
font-size: 15px;
padding: 10px 0;
border-top: 1px solid #eaeaea;
background-color: #f9f9f9;
}
.main-nav a {
text-decoration: none;
color: #333;
position: relative;
}
.main-nav a:hover,
.main-nav a.active {
color: #9d1c20;
}
.main-nav a.active::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 2px;
background-color: #9d1c20;
}