/* Reset and base styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- CORE LAYOUT ARCHITECTURE --- */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Times New Roman', Times, serif;
    background-color: #8B0000;
    color: white;
}

header,
page-footer {
    flex-shrink: 0;
}

main {
    flex-grow: 1;
}

/* --- LANDING PAGE OVERRIDE (NON-SCROLLING) --- */
body#landing-page main {
    overflow: hidden;
}

/* --- HEADER & NAVIGATION STYLES --- */
header {
    background-color: #8B0000;
    padding: 10px 20px;
    border-bottom: 3px solid #FFD700;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-title {
    font-size: 2em;
    color: #FFD700;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav {
    margin-left: auto;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover, nav a.active {
    background-color: #a01010;
}

.header-icons a {
    color: white;
    font-size: 1.5em;
    margin-left: 15px;
    position: relative;
}

#cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: #FFD700;
    color: #8B0000;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
}
