:root {
    --brand-primary: #2c3e50;
    --brand-accent: #e74c3c;
    --brand-light: #ecf0f1;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
    background: linear-gradient(135deg, var(--brand-primary), #34495e);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.product-card {
    transition: transform 0.2s;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.product-image-placeholder {
    height: 200px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdc3c7;
    font-size: 3rem;
}

.price-tag {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-accent);
}

footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0;
}

footer a {
    color: #bdc3c7;
    text-decoration: none;
}

footer a:hover {
    color: white;
}

.navbar {
    transition: box-shadow 0.2s;
}

.card {
    border-radius: 0.5rem;
}

.badge {
    font-weight: 500;
}

/* ── Legal Page Content ── */
.legal-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
}

.legal-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.legal-content h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.35rem;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
}

.legal-content table {
    width: 100%;
    margin-bottom: 1rem;
}

.legal-content a {
    color: #dc3545;
    text-decoration: underline;
}
