345,74 €493,91 €Precio base-30% offPrecio
/* Fixed top header */
.tvheader-offer-wrapper {
position: fixed;
top: 0;
left: 0;
right: 0;
height: 40px;
background: #fff;
display: flex !important;
justify-content: space-between;
align-items: center;
padding: 0 20px;
font-weight: 600;
font-size: 15px;
color: #000; /* black text */
z-index: 1100;
box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
}
.tvheader-offer-wrapper a {
color: #000; /* black links */
display: flex;
align-items: center;
gap: 6px;
text-decoration: none;
font-weight: 600;
}
.tvheader-offer-wrapper a:hover {
opacity: 0.7;
}
.tvheader-offer-wrapper svg {
width: 20px;
height: 20px;
fill: #000; /* black fill for svg */
filter: none;
}
/* Push page content down so it's not hidden behind fixed header */
body {
padding-top: 40px; /* same as header height */
}