/* Header */
.header {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-svg {
    width: 24px;
    height: 36px;
}

.logo {
    font-size: 1.25rem;
    color: var(--ruby-red);
    margin: 0;
}

@media (max-width: 768px) {
    .logo {
        font-size: clamp(0.9rem, 4.5vw, 1.25rem);
        white-space: nowrap;
    }
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--ruby-red), var(--ruby-coral));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.1rem, 5.8vw, 2.5rem);
        white-space: nowrap;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Sections */
.categories, .popular, .contact {
    padding: 3rem 0;
}

/* Footer */
.footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-gray);
}
