:root {
    --primary: #8B0000;
    --secondary: #D4AF37;
    --background: #faf8f5;
    --text: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: var(--background);
    color: var(--text);
}

/* Diners Navigation */
.diners-nav {
    background: white;
    border-bottom: 2px solid var(--secondary);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    font-size: 30px;
}

.brand-name {
    font-size: 24px;
    letter-spacing: 3px;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    padding: 8px 15px;
    transition: all 0.3s;
}

.nav-link.active {
    background: var(--primary);
    color: white;
}

/* Hero */
.diners-hero {
    background: linear-gradient(135deg, var(--primary), #4a0000);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.hero-content h2 {
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* Products */
.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product-image {
    height: 300px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-name {
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.product-price {
    font-size: 24px;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 15px;
}

.add-to-cart {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.add-to-cart:hover {
    background: var(--secondary);
    color: var(--text);
}