/* Brands Page */
.safari-brands-page {
    padding: 30px 0 60px;
}

.safari-brands-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

/* Letter Navigation */
.safari-brands-letters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 32px;
    padding: 16px;
    background: #f8f8f8;
    border-radius: 12px;
}

.safari-brands-letter-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #e0e0e0;
}

.safari-brands-letter-link:hover {
    background: #111111;
    color: #fff;
    border-color: #111111;
}

/* Brand Groups */
.safari-brands-group {
    margin-bottom: 32px;
}

.safari-brands-group-letter {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    padding-bottom: 8px;
    margin-bottom: 16px;
    border-bottom: 2px solid #111111;
}

/* Brands Grid */
.safari-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.safari-brands-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.safari-brands-card:hover {
    border-color: #111111;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.safari-brands-card-image {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.safari-brands-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.safari-brands-card-no-image {
    background: #111111;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.safari-brands-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.safari-brands-card-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.safari-brands-card-count {
    font-size: 12px;
    color: #888;
}

.safari-brands-empty {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .safari-brands-title {
        font-size: 22px;
    }

    .safari-brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 10px;
    }

    .safari-brands-letter-link {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .safari-brands-grid {
        grid-template-columns: 1fr;
    }
}
