.restaurantCard {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--color-surface-white);
    border: 1px solid var(--color-border-default);
    border-radius: var(--rounded-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    width: 295px;
    box-shadow: var(--shadow-sm);
}

.restaurantCard:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--color-border-medium);
}

.restaurantCard__banner {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
}

.restaurantCard__bannerPlaceholder {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, var(--color-surface-gray-light) 0%, var(--color-surface-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--color-text-muted);
}

.restaurantCard__content {
    flex: 1;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.restaurantCard__header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.restaurantCard__logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-border-default);
    flex-shrink: 0;
}

.restaurantCard__logoPlaceholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-surface-gray-light) 0%, var(--color-surface-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-text-muted);
    border: 2px solid var(--color-border-default);
    flex-shrink: 0;
}

.restaurantCard__headerInfo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.restaurantCard__name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.restaurantCard__location {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 13px;
    color: var(--color-text-muted);
}

.restaurantCard__location i {
    color: rgb(224, 120, 40);
    font-size: 11px;
}

.restaurantCard__approved {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 12px;
    font-weight: 500;
    color: #059669;
    background: #ecfdf5;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--rounded-md);
    width: fit-content;
}

.restaurantCard__approved i {
    font-size: 11px;
}

.restaurantCard__description {
    margin: 0;
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
    flex: 1;
}

.restaurantCard__rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: auto;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border-default);
}

.restaurantCard__stars {
    display: flex;
    gap: 2px;
}

.restaurantCard__stars i {
    font-size: 14px;
    color: rgb(224, 120, 40);
}

.restaurantCard__ratingValue {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-primary);
}

@media (max-width: 768px) {
    .restaurantCard__name {
        font-size: 14px;
    }

    .restaurantCard__description {
        font-size: 12px;
    }

    .restaurantCard__content {
        padding: var(--space-sm);
    }

    .restaurantCard__logo,
    .restaurantCard__logoPlaceholder {
        width: 40px;
        height: 40px;
    }
}

