@import url('fonts.css');
:root {
--red: #8B1A1A;
--red-dark: #6B1414;
--gold: #e6b84a;
--ink: #1A1A1A;
--paper: #F5F0E8;
--paper-dark: #EDE5D4;
--white: #FFFFFF;
--gray: #666;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: var(--white);
color: var(--ink);
font-family: 'Barlow', sans-serif;
font-size: 16px;
line-height: 1.6;
overflow-x: hidden;
}
header {
background: var(--red);
border-bottom: 6px solid var(--gold);
position: sticky;
top: 0;
z-index: 200;
}
.header-inner {
max-width: 1100px;
margin: 0 auto;
padding: 0 1.5rem;
display: flex;
align-items: center;
justify-content: space-between;
height: 64px;
}
.logo {
font-family: 'Bebas Neue', sans-serif;
font-size: 2rem;
color: var(--white);
text-decoration: none;
line-height: 1;
}
.logo span { color: var(--gold); }
.header-right { display: flex; align-items: center; }
nav { display: flex; }
nav a {
font-family: 'Barlow Condensed', sans-serif;
font-weight: 700;
font-size: 0.85rem;
text-transform: uppercase;
color: rgba(255,255,255,0.85);
text-decoration: none;
padding: 0 1rem;
height: 64px;
display: inline-flex;
align-items: center;
border-right: 1px solid rgba(255,255,255,0.15);
transition: background 0.15s, color 0.15s;
white-space: nowrap;
}
nav a:first-child { border-left: 1px solid rgba(255,255,255,0.15); }
nav a:hover, nav a.active { background: var(--ink); color: var(--gold); }
.nav-dropdown {
position: relative;
display: inline-flex;
align-items: center;
}
.nav-dropdown > a {
border-right: 1px solid rgba(255,255,255,0.15);
}
.nav-dropdown:first-child > a { border-left: 1px solid rgba(255,255,255,0.15); }
.dropdown-toggle::after {
content: '▾';
margin-left: 5px;
font-size: 0.7rem;
opacity: 0.7;
}
.dropdown-menu {
display: none;
position: absolute;
top: 64px;
left: 0;
background: var(--ink);
border: 2px solid var(--gold);
border-top: none;
min-width: 220px;
z-index: 300;
}
.dropdown-menu a {
display: block;
height: auto;
padding: 0.75rem 1.25rem;
border: none;
border-bottom: 1px solid rgba(255,255,255,0.08);
font-size: 0.82rem;
}
.dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
.visually-hidden { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }
.cart-btn {
background: none;
border: none;
border-left: 1px solid rgba(255,255,255,0.15);
cursor: pointer;
padding: 0 1.25rem;
height: 64px;
display: flex;
align-items: center;
gap: 8px;
font-family: 'Barlow Condensed', sans-serif;
font-weight: 700;
font-size: 0.85rem;
text-transform: uppercase;
color: rgba(255,255,255,0.85);
transition: background 0.15s, color 0.15s;
}
.cart-btn:hover { background: rgba(0,0,0,0.2); color: var(--gold); }
.cart-btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cart-badge {
background: var(--gold);
color: var(--ink);
font-size: 0.65rem;
font-weight: 700;
min-width: 18px;
height: 18px;
border-radius: 9px;
display: none;
align-items: center;
justify-content: center;
padding: 0 4px;
}
.cart-badge.visible { display: flex; }
.cart-overlay {
position: fixed; inset: 0;
background: rgba(0,0,0,0.6);
z-index: 300;
opacity: 0; pointer-events: none;
transition: opacity 0.25s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
position: fixed; top: 0; right: 0;
width: 420px; max-width: 100vw; height: 100vh;
background: var(--paper);
z-index: 400;
display: flex; flex-direction: column;
transform: translateX(100%);
transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
border-left: 4px solid var(--gold);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
background: var(--ink);
padding: 1.25rem 1.5rem;
display: flex; align-items: center; justify-content: space-between;
border-bottom: 4px solid var(--gold);
flex-shrink: 0;
}
.cart-head h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.75rem; color: var(--white); }
.cart-head h2 span { color: var(--gold); }
.cart-close { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.6); font-size: 1.4rem; padding: 4px 8px; transition: color 0.15s; }
.cart-close:hover { color: var(--gold); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; color: var(--gray); }
.cart-item { display: flex; align-items: center; gap: 12px; padding: 0.75rem 0; border-bottom: 1px solid rgba(0,0,0,0.1); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.95rem; line-height: 1.2; color: var(--ink); }
.cart-item-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--red); }
.cart-item-controls { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.qty-btn { width: 28px; height: 28px; border: 2px solid var(--ink); background: var(--white); cursor: pointer; font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: background 0.1s; color: var(--ink); }
.qty-btn:hover { background: var(--paper-dark); }
.qty-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; min-width: 20px; text-align: center; }
.btn-remove { background: none; border: none; cursor: pointer; color: var(--gray); font-size: 1rem; padding: 2px 6px; transition: color 0.15s; }
.btn-remove:hover { color: var(--red); }
.cart-foot { padding: 1.25rem 1.5rem; border-top: 3px solid var(--ink); background: var(--paper-dark); flex-shrink: 0; }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.4rem; }
.cart-total-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; color: var(--ink); }
.cart-total-amt { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--red); }
.cart-note { font-size: 0.78rem; color: var(--gray); margin-bottom: 1rem; }
.btn-checkout { display: block; width: 100%; background: var(--red); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; text-transform: uppercase; padding: 1rem; border: 3px solid var(--ink); cursor: pointer; text-align: center; transition: background 0.15s; }
.btn-checkout:hover { background: var(--red-dark); }
.btn-checkout:disabled { background: var(--gray); cursor: default; }
.section { max-width: 1100px; margin: 0 auto; padding: 3.5rem 1.5rem; position: relative; z-index: 1; }
.section-title {
font-family: 'Bebas Neue', sans-serif;
font-size: 2.5rem;
color: var(--gold);
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 2rem;
}
.section-title::after { content: ''; flex: 1; height: 3px; background: linear-gradient(to right, var(--gold), transparent); }
footer { background: #111; border-top: 6px solid var(--red); padding: 2rem 1.5rem; text-align: center; }
footer p { font-family: 'Barlow', sans-serif; font-size: 0.85rem; color: rgba(255,255,255,0.6); text-transform: none; }
footer a { color: rgba(255,255,255,0.75); text-decoration: none; text-transform: none !important; font-family: 'Barlow', sans-serif; }
footer a:hover { color: var(--gold); }
.press-quote { background: rgba(255,255,255,0.05); border-left: 4px solid var(--gold); padding: 1rem 1.25rem; font-family: 'Barlow Condensed', sans-serif; font-style: italic; font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 0.75rem; }
.press-quote cite { display: block; font-style: normal; font-size: 0.75rem; text-transform: uppercase; color: var(--gold); margin-top: 0.5rem; font-weight: 600; }
.hamburger {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0 1rem;
height: 64px;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 5px;
border-left: 1px solid rgba(255,255,255,0.15);
}
.hamburger span {
display: block;
width: 22px;
height: 2px;
background: var(--white);
transition: all 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
display: none;
position: fixed;
top: 70px;
left: 0; right: 0;
background: var(--ink);
border-bottom: 4px solid var(--gold);
z-index: 199;
flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
font-family: 'Barlow Condensed', sans-serif;
font-weight: 700;
font-size: 1.1rem;
text-transform: uppercase;
color: rgba(255,255,255,0.85);
text-decoration: none;
padding: 1rem 1.5rem;
border-bottom: 1px solid rgba(255,255,255,0.08);
transition: background 0.15s, color 0.15s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.05); color: var(--gold); }
@media (max-width: 700px) {
nav { display: none; }
.cart-drawer { width: 100vw; }
.hamburger { display: flex; }
.cart-label { display: none; }
.cart-btn { padding: 0 0.85rem; border-left: none; }
}