.brand-hero {
    padding: 120px 0 48px;
    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);
}

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

.brand-hero-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.brand-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.brand-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.brand-breadcrumb a:hover {
    color: var(--text-primary);
}

.brand-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.brand-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-secondary);
    background: var(--background-alt);
    padding: 8px 16px;
    border-radius: 20px;
}

.brand-content {
    padding: 48px 0 80px;
}

.category-section {
    margin-bottom: 48px;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.category-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.category-count {
    font-size: 13px;
    color: var(--text-light);
    background: var(--background-alt);
    padding: 4px 12px;
    border-radius: 12px;
}

.food-table {
    width: 100%;
    border-collapse: collapse;
}

.food-table thead th {
    text-align: left;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    background: var(--background-alt);
    border-bottom: 1px solid var(--border);
}

.food-table thead th:not(:first-child) {
    text-align: right;
}

.food-table tbody tr {
    transition: var(--transition);
}

.food-table tbody tr:hover {
    background: var(--background-alt);
}

.food-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.food-table tbody td:not(:first-child) {
    text-align: right;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
}

.food-name-cell a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.food-name-cell a:hover {
    text-decoration: underline;
}

.food-serving {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

.food-calories {
    font-weight: 600;
    color: var(--text-primary) !important;
}

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

.brand-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"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.brand-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.brand-cta-text {
    text-align: center;
}

.brand-cta h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
}

.brand-cta p {
    font-size: 16px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.other-brands {
    padding: 60px 0;
    background: var(--background-alt);
}

.other-brands h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
}

/* Mobile responsive table */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

    .food-table thead th,
    .food-table tbody td {
        padding: 10px 8px;
        font-size: 13px;
    }

    .brand-cta {
        padding: 36px 20px;
    }

    .brand-cta h2 {
        font-size: 24px;
    }
}

@media (min-width: 768px) {
    .brand-cta-inner {
        grid-template-columns: 1fr auto;
    }

    .brand-cta-text {
        text-align: left;
    }
}
