Shop
:root {
–gold:#c9a33a;
–dark:#0d0d0d;
–light:#ffffff;
–muted:#777;
–transition:all 0.3s ease;
}
/* === STORE HEADER === */
.store-header {
background: var(–light);
border-bottom: 1px solid #e5e5e5;
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 40px;
gap: 1rem;
flex-wrap: wrap;
box-sizing: border-box;
position: relative;
z-index: 10;
}
/* === BRAND === */
.store-logo {
font-size: 1.3rem;
font-weight: 700;
color: var(–dark);
text-decoration: none;
text-transform: uppercase;
letter-spacing: 0.5px;
transition: var(–transition);
}
.store-logo:hover {
color: var(–gold);
}
/* === SEARCH BAR === */
.store-search {
flex: 1;
max-width: 500px;
display: flex;
align-items: center;
position: relative;
}
.store-search input {
width: 100%;
padding: 8px 12px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 0.95rem;
transition: border 0.3s ease;
}
.store-search input:focus {
border-color: var(–gold);
outline: none;
}
.store-search button {
position: absolute;
right: 6px;
background: var(–gold);
color: var(–dark);
border: none;
border-radius: 4px;
padding: 6px 10px;
cursor: pointer;
font-weight: 600;
transition: background 0.3s ease;
}
.store-search button:hover {
background: #e4be49;
}
/* === ICONS / CTA === */
.store-actions {
display: flex;
align-items: center;
gap: 1.2rem;
}
.store-actions a {
text-decoration: none;
color: var(–dark);
font-weight: 500;
display: flex;
align-items: center;
gap: 0.3rem;
transition: color 0.3s ease;
}
.store-actions a:hover {
color: var(–gold);
}
/* === CART BADGE === */
.store-cart {
position: relative;
}
.store-cart::after {
content: “2”; /* Example cart count – replace dynamically if needed */
position: absolute;
top: -8px;
right: -10px;
background: var(–gold);
color: var(–dark);
font-size: 0.7rem;
font-weight: 700;
border-radius: 50%;
padding: 2px 6px;
}
/* === RESPONSIVE === */
@media (max-width: 900px) {
.store-header {
flex-direction: column;
align-items: stretch;
padding: 16px 20px;
gap: 1rem;
}
.store-search {
max-width: 100%;
}
.store-actions {
justify-content: center;
}
}
Prestige Calibrations



