.calories-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('/img/fresh-raw-vegetables.png');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border);
}

.calories-hero h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.15;
}

.calories-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.brands-section {
    padding: 60px 0 80px;
}

.brands-section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.brands-section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.brand-card {
    display: block;
    background: white;
    border-radius: var(--border-radius);
    padding: 28px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(37, 36, 44, 0.04);
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.brand-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.brand-card-icon {
    width: 52px;
    height: 52px;
    background: var(--background-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.brand-card-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.brand-card-type {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.brand-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.brand-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-light);
}

.brand-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.calories-cta {
    background: var(--primary-gradient);
    padding: 60px 40px;
    border-radius: var(--border-radius-lg);
    margin: 0 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.calories-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="50" r="1" fill="white" opacity="0.08"/><circle cx="25" cy="75" r="1" fill="white" opacity="0.06"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.calories-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.calories-cta h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
    line-height: 1.2;
}

.calories-cta p {
    font-size: 17px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.alpha-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 32px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.alpha-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    background: var(--background-alt);
    transition: var(--transition);
}

.alpha-nav a:hover,
.alpha-nav a.active {
    background: var(--text-primary);
    color: white;
}

.alpha-nav a.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.seo-content {
    padding: 0 0 60px;
}

.seo-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.seo-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 800px;
}

@media (max-width: 767px) {
    .calories-hero h1 {
        font-size: 32px;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .calories-cta {
        padding: 40px 24px;
    }

    .calories-cta h2 {
        font-size: 26px;
    }
}
