115 lines
3.1 KiB
CSS
115 lines
3.1 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600&display=swap');
|
|
|
|
:root {
|
|
/* Fonts */
|
|
--font-heading: 'Instrument Serif', serif;
|
|
--font-ui: 'Inter', sans-serif;
|
|
/* Color Palette */
|
|
--mb-bg: #F9F9F9;
|
|
--mb-card-bg: #FFFFFF;
|
|
--mb-text-dark: #1A1A1A;
|
|
--mb-text-muted: #666666;
|
|
--mb-accent-red: #E63946;
|
|
--mb-radius: 12px;
|
|
/* High-Visibility Machined White Metal Core Surface Definition */
|
|
/* Sharp linear reflection channels paired with micro-milled density grids */
|
|
--brushed-metal-bg: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(240, 241, 245, 0.95) 25%, rgba(255, 255, 255, 1) 50%, rgba(238, 240, 244, 0.95) 75%, rgba(255, 255, 255, 1) 100% ), repeating-linear-gradient( 0deg, rgba(0, 0, 0, 0.012) 0px, rgba(0, 0, 0, 0.012) 1px, transparent 1px, transparent 2px ), repeating-linear-gradient( 90deg, rgba(255, 255, 255, 0.9) 0px, rgba(255, 255, 255, 0.9) 1px, transparent 1px, transparent 3px ), #EDEFF4; /* Definitive satin platinum breakout base fallback */
|
|
}
|
|
|
|
/* Global Reset & Core Variables Mapping */
|
|
body {
|
|
background-color: var(--mb-bg);
|
|
color: var(--mb-text-dark);
|
|
font-family: var(--font-ui);
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
h1, h2, h3, .display-font {
|
|
font-family: var(--font-heading);
|
|
font-weight: 400;
|
|
}
|
|
|
|
/* Custom Navigation Pill Styling */
|
|
.nav-pill-wrapper {
|
|
background-color: #FFFFFF;
|
|
border: 1px solid rgba(0, 0, 0, 0.06);
|
|
padding: 6px;
|
|
border-radius: 50px;
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
|
|
}
|
|
|
|
.nav-pill-link {
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
color: var(--mb-text-muted);
|
|
padding: 8px 20px;
|
|
border-radius: 50px;
|
|
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.nav-pill-link i {
|
|
width: 16px;
|
|
height: 16px;
|
|
stroke-width: 1.5;
|
|
}
|
|
|
|
/* Navigation Pill States */
|
|
.nav-pill-link:hover {
|
|
color: var(--mb-text-dark);
|
|
background-color: #F1F1F1;
|
|
}
|
|
|
|
.nav-pill-link.active {
|
|
color: #FFFFFF !important;
|
|
background-color: var(--mb-text-dark);
|
|
}
|
|
|
|
.nav-pill-link.active svg {
|
|
stroke: #FFFFFF;
|
|
}
|
|
|
|
/* Utilities & Component Support Layouts */
|
|
.cart-badge {
|
|
position: absolute;
|
|
top: -5px;
|
|
right: -5px;
|
|
background-color: var(--mb-text-dark);
|
|
color: #FFFFFF;
|
|
font-size: 0.7rem;
|
|
font-weight: 600;
|
|
width: 18px;
|
|
height: 18px;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 2px solid var(--mb-bg);
|
|
}
|
|
|
|
.transition-smooth {
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
.transition-smooth:hover {
|
|
color: var(--mb-text-dark) !important;
|
|
}
|
|
|
|
.py-1-5 {
|
|
padding-top: 0.35rem !important;
|
|
padding-bottom: 0.35rem !important;
|
|
}
|
|
|
|
/* Global Focus Ring Corrections */
|
|
h1:focus, h2:focus, h3:focus, h4:focus, p:focus, div:focus, span:focus {
|
|
outline: none !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
[tabindex="-1"]:focus {
|
|
outline: none !important;
|
|
}
|